| Server IP : 78.24.162.143 / Your IP : 216.73.216.17 Web Server : Apache System : Linux hosting.cormo.systems 5.15.0-179-generic #189-Ubuntu SMP Tue May 5 18:20:56 UTC 2026 x86_64 User : web63 ( 5058) PHP Version : 7.4.33 Disable Function : create_functions,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client34/web63/web/wp-content/plugins/pods/src/Pods/Whatsit/ |
Upload File : |
<?php
namespace Pods\Whatsit;
use Exception;
use Pods\Whatsit;
/**
* Group class.
*
* @since 2.8.0
*/
class Group extends Whatsit {
/**
* {@inheritdoc}
*/
protected static $type = 'group';
/**
* {@inheritdoc}
*/
public function get_args() {
$args = parent::get_args();
// Groups have no group.
unset( $args['group'] );
return $args;
}
/**
* {@inheritdoc}
*/
public function get_fields( array $args = [] ) {
if ( [] === $this->_fields ) {
return [];
}
$api = pods_api();
$has_custom_args = ! empty( $args );
if ( null !== $this->_fields && ! $has_custom_args ) {
$objects = $this->maybe_get_objects_by_identifier( $this->_fields, $args );
if ( is_array( $objects ) ) {
$this->_fields = array_map( static function( $object ) { return clone $object; }, $objects );
/** @var Field[] $objects */
return $objects;
}
}
$filtered_args = [
'parent' => $this->get_parent_id(),
'parent_id' => $this->get_parent_id(),
'parent_name' => $this->get_parent_name(),
'parent_identifier' => $this->get_parent_identifier(),
'group' => $this->get_name(),
'group_id' => $this->get_id(),
'group_name' => $this->get_name(),
'group_identifier' => $this->get_identifier(),
];
if ( empty( $filtered_args['parent_id'] ) || empty( $filtered_args['group_id'] ) ) {
$filtered_args['bypass_post_type_find'] = true;
}
$filtered_args = array_filter( $filtered_args );
$args = array_merge( [
'orderby' => 'menu_order title',
'order' => 'ASC',
], $filtered_args, $args );
try {
if ( ! empty( $args['object_type'] ) ) {
$objects = $api->_load_objects( $args );
} else {
$objects = $api->load_fields( $args );
}
} catch ( Exception $exception ) {
$objects = [];
}
if ( ! $has_custom_args ) {
$this->_fields = array_map( static function( $object ) { return clone $object; }, $objects );
}
return $objects;
}
/**
* {@inheritdoc}
*/
public function get_groups( array $args = [] ) {
// Groups do not support groups.
return [];
}
/**
* {@inheritdoc}
*/
public function get_arg( $arg, $default = null, $strict = false ) {
$arg = (string) $arg;
$special_args = [
// Pod args.
'pod_id' => 'get_parent_id',
'pod' => 'get_parent_name',
'pod_name' => 'get_parent_name',
'pod_identifier' => 'get_parent_identifier',
'pod_label' => 'get_parent_label',
'pod_description' => 'get_parent_description',
'pod_object' => 'get_parent_object',
'pod_object_type' => 'get_parent_object_type',
'pod_object_storage_type' => 'get_parent_object_storage_type',
'pod_type' => 'get_parent_type',
];
if ( isset( $special_args[ $arg ] ) ) {
return $this->{$special_args[ $arg ]}();
}
return parent::get_arg( $arg, $default );
}
}