HEX
Server: Apache
System: Linux web15f74.uni5.net 5.4.282-1.el8.elrepo.x86_64 #1 SMP Mon Aug 19 18:33:22 EDT 2024 x86_64
User: lucendi (859622)
PHP: 7.4.33
Disabled: apache_child_terminate,c99_buff_prepare,c99_sess_put,dl,exec,leak,link,myshellexec,openlog,passthru,pclose,pcntl_exec,php_check_syntax,php_strip_whitespace,popen,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,show_source,symlink,system,socket_listen,socket_create_listen,putenv
Upload Files
File: /home/lucendi/www/wp-content/themes/divi/core/components/post/Taxonomy.php
<?php


abstract class ET_Core_Post_Taxonomy extends ET_Core_Post_Object {

	/**
	 * The `$args` array used when registering this taxonomy.
	 *
	 * @since 3.0.99
	 * @var   array
	 */
	protected $_args;

	/**
	 * The WP Taxonomy object for this instance.
	 *
	 * @since 3.0.99
	 * @var   WP_Taxonomy
	 */
	protected $_wp_object;

	/**
	 * Taxonomy key.
	 *
	 * @since 3.0.99
	 * @var   string
	 */
	public $name;

	/**
	 * The post types to which this taxonomy applies.
	 *
	 * @since 3.0.99
	 * @var   array
	 */
	public $post_types;

	/**
	 * This taxonomy's terms.
	 *
	 * @var WP_Term[]
	 */
	public $terms;

	/**
	 * @inheritDoc
	 */
	public $wp_type = 'taxonomy';

	/**
	 * ET_Core_Post_Taxonomy constructor.
	 */
	public function __construct() {
		parent::__construct();

		$name = $this->name;

		/**
		 * Filters the supported post types for a custom taxonomy. The dynamic portion of the
		 * filter name, $name, refers to the name of the custom taxonomy.
		 *
		 * @since 3.0.99
		 *
		 * @param array
		 */
		$this->post_types = apply_filters( "et_core_taxonomy_{$name}_post_types", $this->post_types );
	}

	/**
	 * Get the terms for this taxonomy.
	 *
	 * @return array|int|WP_Error|WP_Term[]
	 */
	public function get() {
		if ( is_null( $this->terms ) ) {
			$this->terms = get_terms( $this->name, array( 'hide_empty' => false ) );
		}

		return $this->terms;
	}

	/**
	 * Get a derived class instance.
	 *
	 * @since 3.0.99
	 *
	 * @param string $type See {@see self::$wp_type} for accepted values. Default is 'taxonomy'.
	 * @param string $name The name/slug of the derived object. Default is an empty string.
	 *
	 * @return self|null
	 */
	public static function instance( $type = 'taxonomy', $name = '' ) {
		return parent::instance( $type, $name );
	}
}