# ultimate-post-kit/trunk/includes/controls.php

Ultimate Post Kit, version trunk. 18 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post-kit/trunk/code/includes/controls.php
- Raw: https://pluginprobe.com/plugins/ultimate-post-kit/trunk/raw/includes/controls.php
- Modified: 2021-04-10T17:20:56+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/ultimate-post-kit/trunk/code/includes/controls.php#L10-L20`.

```php
<?php
namespace UltimatePostKit;

use Elementor\Base_Control;

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly

class Control_Choose extends Base_Control {

 // here is some base default settings set by the `choose` control
  protected function get_default_settings() {
     return [
		'options'     => [],
		'label_block' => true,
		'toggle'      => true,
     ];
  }
}
```
