File "boolean.php"
Full path: /home/kosmetik/public_html/wp-content/plugins/anywhere-elementor-pro.2.15.5/includes/modules/ae-dynamic/boolean.php
File
size: 2.2 B
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
namespace Aepro\Modules\AeDynamic;
use Elementor\Controls_Manager;
use Elementor\Core\DynamicTags\Tag;
use Elementor\Plugin;
use Aepro\Classes\AcfMaster;
class Boolean extends Tag
{
public function get_name()
{
return 'ae-boolean';
}
public function get_title()
{
return __('Repeater Boolean', 'ae-pro');
}
public function get_group()
{
return 'acf';
}
public function get_categories()
{
return [
\Elementor\Modules\DynamicTags\Module::TEXT_CATEGORY,
\Elementor\Modules\DynamicTags\Module::POST_META_CATEGORY,
];
}
public function get_panel_template_setting_key()
{
return 'key';
}
protected function _register_controls()
{
$this->add_control(
'notice',
[
'label' => __('', 'ae-pro'),
'type' => Controls_Manager::RAW_HTML,
'raw' => __('Repeater Boolean Support True/False field of ACF.', 'ae-pro'),
]
);
DynamicHelper::instance()->ae_get_group_fields($this, $this->get_supported_fields());
$this->add_control(
'true_message',
[
'label' => __('True Message', 'ae-pro'),
'type' => Controls_Manager::TEXT,
'default' => '',
'render_type' => 'template',
]
);
$this->add_control(
'false_message',
[
'label' => __('False Message', 'ae-pro'),
'type' => Controls_Manager::TEXT,
'default' => '',
'render_type' => 'template',
]
);
}
public function get_supported_fields()
{
return [
'true_false'
// Pro
];
}
public function render()
{
$settings = $this->get_settings();
$value = DynamicHelper::instance()->get_repeater_data($settings);
if ($value == 1) {
$value = $settings['true_message'];
} else {
$value = $settings['false_message'];
}
echo $value;
}
}