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

Ultimate Post Kit – Elementor Post Grid, Post Carousel, Post Slider &amp; Blog Layout Widgets, version 4.1.8. 18 lines.

- Page: https://pluginprobe.com/plugins/ultimate-post-kit/4.1.8/code/includes/controls.php
- Raw: https://pluginprobe.com/plugins/ultimate-post-kit/4.1.8/raw/includes/controls.php
- Modified: 2026-05-06T10:10:54+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/4.1.8/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,
     ];
  }
}
```
