![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/cartinsight.co/wp-content/plugins/colibri-page-builder/src/OCDI/ |
<?php /** * A class that extends WP_Customize_Setting so we can access * the protected updated method when importing options. * * Used in the Customizer importer. * * @since 1.1.1 * @package ocdi */ namespace ColibriWP\PageBuilder\OCDI; use WP_Customize_Setting; final class CustomizerOption extends WP_Customize_Setting { /** * Import an option value for this setting. * * @param mixed $value The option value. * * @return void * @since 1.1.1 */ public function import( $value ) { $this->update( $value ); } }