%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Search/Comparison/Post/
Upload File :
Create Path :
Current File : /var/www/knwn/wp-content/plugins/admin-columns-pro/classes/Search/Comparison/Post/PageTemplate.php

<?php

namespace ACP\Search\Comparison\Post;

use AC;
use AC\MetaType;
use ACP\Search\Comparison;
use ACP\Search\Operators;

class PageTemplate extends Comparison\Meta
	implements Comparison\Values {

	/**
	 * @var array Key is the template name, value is the filename of the template
	 */
	private $templates;

	public function __construct( $templates ) {
		$operators = new Operators( [
			Operators::EQ,
			Operators::IS_EMPTY,
			Operators::NOT_IS_EMPTY,
		] );

		$this->templates = $templates;

		parent::__construct( $operators, '_wp_page_template', MetaType::POST );
	}

	public function get_values() {
		return AC\Helper\Select\Options::create_from_array( array_flip( (array) $this->templates ) );
	}

}

Zerion Mini Shell 1.0