HEX
Server: Apache
System: Linux webd003.cluster128.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: slyfwmm (169339)
PHP: 8.1.34
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/slyfwmm/laretediclo/wp-content/plugins/pods/src/Pods/Blocks/Collections/Pods.php
<?php

namespace Pods\Blocks\Collections;

/**
 * Block collection functionality class.
 *
 * @since 2.8.0
 */
class Pods extends Base {

	/**
	 * Get the name/slug of this block collection.
	 *
	 * @since 2.8.0
	 *
	 * @return string
	 */
	public function slug() {
		return 'pods';
	}

	/**
	 * Get block collection configuration to register with Pods.
	 *
	 * @since 2.8.0
	 *
	 * @return array Block collection configuration.
	 */
	public function block_collection() {
		return [
			'internal'  => true,
			'label'     => __( 'Pods Blocks', 'pods' ),
			'namespace' => $this->slug(),
			'icon'      => 'pods',
		];
	}
}