| Server IP : 146.59.209.152 / Your IP : 216.73.216.46 Web Server : Apache System : Linux webm005.cluster131.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64 User : infrafs ( 43850) PHP Version : 8.2.29 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/infrafs/bike/wp-content/plugins/colibri-page-builder-pro/src/OCDI/ |
Upload File : |
<?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 );
}
}