PluginProbe
Ultimate Post Kit / 4.2.2
Ultimate Post Kit v4.2.2
4.2.1 4.2.2 4.2.3 4.5.0 4.5.2 4.5.3 4.2.0 4.1.18 4.1.17 4.1.16 4.1.15 4.1.14 4.1.13 4.1.12 4.1.11 4.1.10 4.1.9 4.1.8 4.0.9 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.1.5 All 145 releases
ultimate-post-kit / includes / controls.php

controls.php in Ultimate Post Kit 4.2.2, at includes/controls.php

18 lines 387 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 namespace UltimatePostKit;
3
4 use Elementor\Base_Control;
5
6 if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
7
8 class Control_Choose extends Base_Control {
9
10 // here is some base default settings set by the `choose` control
11 protected function get_default_settings() {
12 return [
13 'options' => [],
14 'label_block' => true,
15 'toggle' => true,
16 ];
17 }
18 }