cl01/wp-content/plugins/blaze-demo-importer/classes/class-customizer-option.php
2025-02-24 12:39:24 +08:00

18 lines
444 B
PHP
Executable File

<?php
/**
* A class that extends WP_Customize_Setting so we can access
* the protected updated method when importing options.
*
*/
final class BLAZE_DEMO_IMPORTER_Customzer_Option extends WP_Customize_Setting {
/**
* Import an option value for this setting.
*
* @param mixed $value The option value.
* @return void
*/
public function import($value) {
$this->update($value);
}
}