# ablocks/2.11.1/includes/import/customizer-option.php

aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder &amp; Animation Builder, version 2.11.1. 27 lines.

- Page: https://pluginprobe.com/plugins/ablocks/2.11.1/code/includes/import/customizer-option.php
- Raw: https://pluginprobe.com/plugins/ablocks/2.11.1/raw/includes/import/customizer-option.php
- Modified: 2025-04-09T16:19:26+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/ablocks/2.11.1/code/includes/import/customizer-option.php#L10-L20`.

```php
<?php
/**
 * A class that extends WP_Customize_Setting so we can access
 * the protected updated method when importing options.
 *
 * Used in the Customizer importer.
 *
 * @package ABlocks
 */

namespace ABlocks\import;

use WP_Customize_Setting;

final class CustomizerOption extends WP_Customize_Setting {
	/**
	 * Import an option value for this setting.
	 *
	 * @since 1.1.1
	 * @param mixed $value The option value.
	 * @return void
	 */
	public function import( $value ) {
		$this->update( $value );
	}
}

```
