# assistant/1.5.1/backend/src/Helpers/CustomizerOptionHelper.php

Assistant – Every Day Productivity Apps, version 1.5.1. 21 lines.

- Page: https://pluginprobe.com/plugins/assistant/1.5.1/code/backend/src/Helpers/CustomizerOptionHelper.php
- Raw: https://pluginprobe.com/plugins/assistant/1.5.1/raw/backend/src/Helpers/CustomizerOptionHelper.php
- Modified: 2025-02-05T15:21:08+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/assistant/1.5.1/code/backend/src/Helpers/CustomizerOptionHelper.php#L10-L20`.

```php
<?php

namespace FL\Assistant\Helpers;

/**
 * A class that extends WP_Customize_Setting so we can access
 * the protected import method when importing options.
 */
class CustomizerOptionHelper extends WP_Customize_Setting {

	/**
	 * Import a value for this setting.
	 *
	 * @param mixed $value The option value.
	 * @return void
	 */
	public function import( $value ) {
		$this->update( $value );
	}
}

```
