# leadin/11.3.65/public/admin/widgets/class-elementorformselect.php

HubSpot All-In-One Marketing – Forms, Popups, Live Chat, version 11.3.65. 48 lines.

- Page: https://pluginprobe.com/plugins/leadin/11.3.65/code/public/admin/widgets/class-elementorformselect.php
- Raw: https://pluginprobe.com/plugins/leadin/11.3.65/raw/public/admin/widgets/class-elementorformselect.php
- Modified: 2026-07-10T16:14:28+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/leadin/11.3.65/code/public/admin/widgets/class-elementorformselect.php#L10-L20`.

```php
<?php
namespace Leadin\admin\widgets;

use Leadin\AssetsManager;

/**
 * Class for Elementor form selector control
 */
class ElementorFormSelect extends \Elementor\Base_Data_Control {

	/**
	 * Returns control internal name
	 */
	public function get_type() {
		return 'leadinformselect';
	}

	/**
	 * Load assets needed for control
	 */
	public function enqueue() {
		AssetsManager::enqueue_elementor_script();
	}

	/**
	 * Default settings for control
	 */
	protected function get_default_settings() {
		return array(
			'label_block'      => true,
			'rows'             => 3,
			'hsptform_options' => array(),
		);
	}

	/**
	 * Render Function
	 */
	public function content_template() {
		$control_uid = $this->get_control_uid();
		?>
		<div class="elementor-hbspt-form-selector" data-id="<?php echo esc_html( $control_uid ); ?>"></div>
		<?php
	}

}


```
