Файловый менеджер - Редактировать - /home/freeclou/optimyar/wp-content/plugins/elementor-extras/modules/display-conditions/conditions/post.php
Назад
<?php namespace ElementorExtras\Modules\DisplayConditions\Conditions; // Extras for Elementor Classes use ElementorExtras\Base\Condition; // Elementor Classes use Elementor\Controls_Manager; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly /** * \Modules\DisplayConditions\Conditions\Post * * @since 2.2.0 */ class Post extends Condition { /** * Get Group * * Get the group of the condition * * @since 2.2.0 * @return string */ public function get_group() { return 'single'; } /** * Get Name * * Get the name of the module * * @since 2.2.0 * @return string */ public function get_name() { return 'post'; } /** * Get Title * * Get the title of the module * * @since 2.2.0 * @return string */ public function get_title() { return __( 'Post', 'elementor-extras' ); } /** * Get Value Control * * Get the settings for the value control * * @since 2.2.0 * @return string */ public function get_value_control() { return [ 'type' => 'ee-query', 'default' => '', 'placeholder' => __( 'Any', 'elementor-extras' ), 'description' => __( 'Leave blank for any post.', 'elementor-extras' ), 'label_block' => true, 'multiple' => true, 'query_type' => 'posts', 'object_type' => 'post', ]; } /** * Check condition * * @since 2.2.0 * * @access public * * @param string $name The control name to check * @param string $operator Comparison operator * @param mixed $value The control value to check */ public function check( $name = null, $operator, $value ) { $show = false; if ( is_array( $value ) && ! empty( $value ) ) { foreach ( $value as $_key => $_value ) { if ( is_single( $_value ) || is_singular( $_value ) ) { $show = true; break; } } } else { $show = is_single( $value ) || is_singular( $value ); } return $this->compare( $show, true, $operator ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.33 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка