PluginProbe
Assistant – Every Day Productivity Apps / 1.5.1
Assistant – Every Day Productivity Apps v1.5.1
1.5.5 trunk 0.1.0 0.2.0 0.2.1 0.2.2 0.3.0 0.3.1 0.4 0.4.1 0.4.2 0.5.0 0.5.1 0.6.0 0.7.0 0.7.0.2 0.7.0.3 0.7.0.4 0.7.0.5 0.7.0.6 0.7.0.7 0.7.0.8 0.7.0.9 0.7.1 1.0 All 71 releases
assistant / backend / src / Helpers / CustomizerOptionHelper.php

CustomizerOptionHelper.php in Assistant – Every Day Productivity Apps 1.5.1, at backend/src/Helpers/CustomizerOptionHelper.php

21 lines 424 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace FL\Assistant\Helpers;
4
5 /**
6 * A class that extends WP_Customize_Setting so we can access
7 * the protected import method when importing options.
8 */
9 class CustomizerOptionHelper extends WP_Customize_Setting {
10
11 /**
12 * Import a value for this setting.
13 *
14 * @param mixed $value The option value.
15 * @return void
16 */
17 public function import( $value ) {
18 $this->update( $value );
19 }
20 }
21