class-wp-customize-setting.php 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984
  1. <?php
  2. /**
  3. * WordPress Customize Setting classes
  4. *
  5. * @package WordPress
  6. * @subpackage Customize
  7. * @since 3.4.0
  8. */
  9. /**
  10. * Customize Setting class.
  11. *
  12. * Handles saving and sanitizing of settings.
  13. *
  14. * @since 3.4.0
  15. *
  16. * @see WP_Customize_Manager
  17. * @link https://developer.wordpress.org/themes/customize-api
  18. */
  19. #[AllowDynamicProperties]
  20. class WP_Customize_Setting {
  21. /**
  22. * Customizer bootstrap instance.
  23. *
  24. * @since 3.4.0
  25. * @var WP_Customize_Manager
  26. */
  27. public $manager;
  28. /**
  29. * Unique string identifier for the setting.
  30. *
  31. * @since 3.4.0
  32. * @var string
  33. */
  34. public $id;
  35. /**
  36. * Type of customize settings.
  37. *
  38. * @since 3.4.0
  39. * @var string
  40. */
  41. public $type = 'theme_mod';
  42. /**
  43. * Capability required to edit this setting.
  44. *
  45. * @since 3.4.0
  46. * @var string|array
  47. */
  48. public $capability = 'edit_theme_options';
  49. /**
  50. * Theme features required to support the setting.
  51. *
  52. * @since 3.4.0
  53. * @var string|string[]
  54. */
  55. public $theme_supports = '';
  56. /**
  57. * The default value for the setting.
  58. *
  59. * @since 3.4.0
  60. * @var string
  61. */
  62. public $default = '';
  63. /**
  64. * Options for rendering the live preview of changes in Customizer.
  65. *
  66. * Set this value to 'postMessage' to enable a custom JavaScript handler to render changes to this setting
  67. * as opposed to reloading the whole page.
  68. *
  69. * @since 3.4.0
  70. * @var string
  71. */
  72. public $transport = 'refresh';
  73. /**
  74. * Server-side validation callback for the setting's value.
  75. *
  76. * @since 4.6.0
  77. * @var callable
  78. */
  79. public $validate_callback = '';
  80. /**
  81. * Callback to filter a Customize setting value in un-slashed form.
  82. *
  83. * @since 3.4.0
  84. * @var callable
  85. */
  86. public $sanitize_callback = '';
  87. /**
  88. * Callback to convert a Customize PHP setting value to a value that is JSON serializable.
  89. *
  90. * @since 3.4.0
  91. * @var callable
  92. */
  93. public $sanitize_js_callback = '';
  94. /**
  95. * Whether or not the setting is initially dirty when created.
  96. *
  97. * This is used to ensure that a setting will be sent from the pane to the
  98. * preview when loading the Customizer. Normally a setting only is synced to
  99. * the preview if it has been changed. This allows the setting to be sent
  100. * from the start.
  101. *
  102. * @since 4.2.0
  103. * @var bool
  104. */
  105. public $dirty = false;
  106. /**
  107. * ID Data.
  108. *
  109. * @since 3.4.0
  110. * @var array
  111. */
  112. protected $id_data = array();
  113. /**
  114. * Whether or not preview() was called.
  115. *
  116. * @since 4.4.0
  117. * @var bool
  118. */
  119. protected $is_previewed = false;
  120. /**
  121. * Cache of multidimensional values to improve performance.
  122. *
  123. * @since 4.4.0
  124. * @var array
  125. */
  126. protected static $aggregated_multidimensionals = array();
  127. /**
  128. * Whether the multidimensional setting is aggregated.
  129. *
  130. * @since 4.4.0
  131. * @var bool
  132. */
  133. protected $is_multidimensional_aggregated = false;
  134. /**
  135. * Constructor.
  136. *
  137. * Any supplied $args override class property defaults.
  138. *
  139. * @since 3.4.0
  140. *
  141. * @param WP_Customize_Manager $manager Customizer bootstrap instance.
  142. * @param string $id A specific ID of the setting.
  143. * Can be a theme mod or option name.
  144. * @param array $args {
  145. * Optional. Array of properties for the new Setting object. Default empty array.
  146. *
  147. * @type string $type Type of the setting. Default 'theme_mod'.
  148. * @type string $capability Capability required for the setting. Default 'edit_theme_options'
  149. * @type string|string[] $theme_supports Theme features required to support the panel. Default is none.
  150. * @type string $default Default value for the setting. Default is empty string.
  151. * @type string $transport Options for rendering the live preview of changes in Customizer.
  152. * Using 'refresh' makes the change visible by reloading the whole preview.
  153. * Using 'postMessage' allows a custom JavaScript to handle live changes.
  154. * Default is 'refresh'.
  155. * @type callable $validate_callback Server-side validation callback for the setting's value.
  156. * @type callable $sanitize_callback Callback to filter a Customize setting value in un-slashed form.
  157. * @type callable $sanitize_js_callback Callback to convert a Customize PHP setting value to a value that is
  158. * JSON serializable.
  159. * @type bool $dirty Whether or not the setting is initially dirty when created.
  160. * }
  161. */
  162. public function __construct( $manager, $id, $args = array() ) {
  163. $keys = array_keys( get_object_vars( $this ) );
  164. foreach ( $keys as $key ) {
  165. if ( isset( $args[ $key ] ) ) {
  166. $this->$key = $args[ $key ];
  167. }
  168. }
  169. $this->manager = $manager;
  170. $this->id = $id;
  171. // Parse the ID for array keys.
  172. $this->id_data['keys'] = preg_split( '/\[/', str_replace( ']', '', $this->id ) );
  173. $this->id_data['base'] = array_shift( $this->id_data['keys'] );
  174. // Rebuild the ID.
  175. $this->id = $this->id_data['base'];
  176. if ( ! empty( $this->id_data['keys'] ) ) {
  177. $this->id .= '[' . implode( '][', $this->id_data['keys'] ) . ']';
  178. }
  179. if ( $this->validate_callback ) {
  180. add_filter( "customize_validate_{$this->id}", $this->validate_callback, 10, 3 );
  181. }
  182. if ( $this->sanitize_callback ) {
  183. add_filter( "customize_sanitize_{$this->id}", $this->sanitize_callback, 10, 2 );
  184. }
  185. if ( $this->sanitize_js_callback ) {
  186. add_filter( "customize_sanitize_js_{$this->id}", $this->sanitize_js_callback, 10, 2 );
  187. }
  188. if ( 'option' === $this->type || 'theme_mod' === $this->type ) {
  189. // Other setting types can opt-in to aggregate multidimensional explicitly.
  190. $this->aggregate_multidimensional();
  191. // Allow option settings to indicate whether they should be autoloaded.
  192. if ( 'option' === $this->type && isset( $args['autoload'] ) ) {
  193. self::$aggregated_multidimensionals[ $this->type ][ $this->id_data['base'] ]['autoload'] = $args['autoload'];
  194. }
  195. }
  196. }
  197. /**
  198. * Get parsed ID data for multidimensional setting.
  199. *
  200. * @since 4.4.0
  201. *
  202. * @return array {
  203. * ID data for multidimensional setting.
  204. *
  205. * @type string $base ID base
  206. * @type array $keys Keys for multidimensional array.
  207. * }
  208. */
  209. final public function id_data() {
  210. return $this->id_data;
  211. }
  212. /**
  213. * Set up the setting for aggregated multidimensional values.
  214. *
  215. * When a multidimensional setting gets aggregated, all of its preview and update
  216. * calls get combined into one call, greatly improving performance.
  217. *
  218. * @since 4.4.0
  219. */
  220. protected function aggregate_multidimensional() {
  221. $id_base = $this->id_data['base'];
  222. if ( ! isset( self::$aggregated_multidimensionals[ $this->type ] ) ) {
  223. self::$aggregated_multidimensionals[ $this->type ] = array();
  224. }
  225. if ( ! isset( self::$aggregated_multidimensionals[ $this->type ][ $id_base ] ) ) {
  226. self::$aggregated_multidimensionals[ $this->type ][ $id_base ] = array(
  227. 'previewed_instances' => array(), // Calling preview() will add the $setting to the array.
  228. 'preview_applied_instances' => array(), // Flags for which settings have had their values applied.
  229. 'root_value' => $this->get_root_value( array() ), // Root value for initial state, manipulated by preview and update calls.
  230. );
  231. }
  232. if ( ! empty( $this->id_data['keys'] ) ) {
  233. // Note the preview-applied flag is cleared at priority 9 to ensure it is cleared before a deferred-preview runs.
  234. add_action( "customize_post_value_set_{$this->id}", array( $this, '_clear_aggregated_multidimensional_preview_applied_flag' ), 9 );
  235. $this->is_multidimensional_aggregated = true;
  236. }
  237. }
  238. /**
  239. * Reset `$aggregated_multidimensionals` static variable.
  240. *
  241. * This is intended only for use by unit tests.
  242. *
  243. * @since 4.5.0
  244. * @ignore
  245. */
  246. public static function reset_aggregated_multidimensionals() {
  247. self::$aggregated_multidimensionals = array();
  248. }
  249. /**
  250. * The ID for the current site when the preview() method was called.
  251. *
  252. * @since 4.2.0
  253. * @var int
  254. */
  255. protected $_previewed_blog_id;
  256. /**
  257. * Return true if the current site is not the same as the previewed site.
  258. *
  259. * @since 4.2.0
  260. *
  261. * @return bool If preview() has been called.
  262. */
  263. public function is_current_blog_previewed() {
  264. if ( ! isset( $this->_previewed_blog_id ) ) {
  265. return false;
  266. }
  267. return ( get_current_blog_id() === $this->_previewed_blog_id );
  268. }
  269. /**
  270. * Original non-previewed value stored by the preview method.
  271. *
  272. * @see WP_Customize_Setting::preview()
  273. * @since 4.1.1
  274. * @var mixed
  275. */
  276. protected $_original_value;
  277. /**
  278. * Add filters to supply the setting's value when accessed.
  279. *
  280. * If the setting already has a pre-existing value and there is no incoming
  281. * post value for the setting, then this method will short-circuit since
  282. * there is no change to preview.
  283. *
  284. * @since 3.4.0
  285. * @since 4.4.0 Added boolean return value.
  286. *
  287. * @return bool False when preview short-circuits due no change needing to be previewed.
  288. */
  289. public function preview() {
  290. if ( ! isset( $this->_previewed_blog_id ) ) {
  291. $this->_previewed_blog_id = get_current_blog_id();
  292. }
  293. // Prevent re-previewing an already-previewed setting.
  294. if ( $this->is_previewed ) {
  295. return true;
  296. }
  297. $id_base = $this->id_data['base'];
  298. $is_multidimensional = ! empty( $this->id_data['keys'] );
  299. $multidimensional_filter = array( $this, '_multidimensional_preview_filter' );
  300. /*
  301. * Check if the setting has a pre-existing value (an isset check),
  302. * and if doesn't have any incoming post value. If both checks are true,
  303. * then the preview short-circuits because there is nothing that needs
  304. * to be previewed.
  305. */
  306. $undefined = new stdClass();
  307. $needs_preview = ( $undefined !== $this->post_value( $undefined ) );
  308. $value = null;
  309. // Since no post value was defined, check if we have an initial value set.
  310. if ( ! $needs_preview ) {
  311. if ( $this->is_multidimensional_aggregated ) {
  312. $root = self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['root_value'];
  313. $value = $this->multidimensional_get( $root, $this->id_data['keys'], $undefined );
  314. } else {
  315. $default = $this->default;
  316. $this->default = $undefined; // Temporarily set default to undefined so we can detect if existing value is set.
  317. $value = $this->value();
  318. $this->default = $default;
  319. }
  320. $needs_preview = ( $undefined === $value ); // Because the default needs to be supplied.
  321. }
  322. // If the setting does not need previewing now, defer to when it has a value to preview.
  323. if ( ! $needs_preview ) {
  324. if ( ! has_action( "customize_post_value_set_{$this->id}", array( $this, 'preview' ) ) ) {
  325. add_action( "customize_post_value_set_{$this->id}", array( $this, 'preview' ) );
  326. }
  327. return false;
  328. }
  329. switch ( $this->type ) {
  330. case 'theme_mod':
  331. if ( ! $is_multidimensional ) {
  332. add_filter( "theme_mod_{$id_base}", array( $this, '_preview_filter' ) );
  333. } else {
  334. if ( empty( self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['previewed_instances'] ) ) {
  335. // Only add this filter once for this ID base.
  336. add_filter( "theme_mod_{$id_base}", $multidimensional_filter );
  337. }
  338. self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['previewed_instances'][ $this->id ] = $this;
  339. }
  340. break;
  341. case 'option':
  342. if ( ! $is_multidimensional ) {
  343. add_filter( "pre_option_{$id_base}", array( $this, '_preview_filter' ) );
  344. } else {
  345. if ( empty( self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['previewed_instances'] ) ) {
  346. // Only add these filters once for this ID base.
  347. add_filter( "option_{$id_base}", $multidimensional_filter );
  348. add_filter( "default_option_{$id_base}", $multidimensional_filter );
  349. }
  350. self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['previewed_instances'][ $this->id ] = $this;
  351. }
  352. break;
  353. default:
  354. /**
  355. * Fires when the WP_Customize_Setting::preview() method is called for settings
  356. * not handled as theme_mods or options.
  357. *
  358. * The dynamic portion of the hook name, `$this->id`, refers to the setting ID.
  359. *
  360. * @since 3.4.0
  361. *
  362. * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
  363. */
  364. do_action( "customize_preview_{$this->id}", $this );
  365. /**
  366. * Fires when the WP_Customize_Setting::preview() method is called for settings
  367. * not handled as theme_mods or options.
  368. *
  369. * The dynamic portion of the hook name, `$this->type`, refers to the setting type.
  370. *
  371. * @since 4.1.0
  372. *
  373. * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
  374. */
  375. do_action( "customize_preview_{$this->type}", $this );
  376. }
  377. $this->is_previewed = true;
  378. return true;
  379. }
  380. /**
  381. * Clear out the previewed-applied flag for a multidimensional-aggregated value whenever its post value is updated.
  382. *
  383. * This ensures that the new value will get sanitized and used the next time
  384. * that `WP_Customize_Setting::_multidimensional_preview_filter()`
  385. * is called for this setting.
  386. *
  387. * @since 4.4.0
  388. *
  389. * @see WP_Customize_Manager::set_post_value()
  390. * @see WP_Customize_Setting::_multidimensional_preview_filter()
  391. */
  392. final public function _clear_aggregated_multidimensional_preview_applied_flag() {
  393. unset( self::$aggregated_multidimensionals[ $this->type ][ $this->id_data['base'] ]['preview_applied_instances'][ $this->id ] );
  394. }
  395. /**
  396. * Callback function to filter non-multidimensional theme mods and options.
  397. *
  398. * If switch_to_blog() was called after the preview() method, and the current
  399. * site is now not the same site, then this method does a no-op and returns
  400. * the original value.
  401. *
  402. * @since 3.4.0
  403. *
  404. * @param mixed $original Old value.
  405. * @return mixed New or old value.
  406. */
  407. public function _preview_filter( $original ) {
  408. if ( ! $this->is_current_blog_previewed() ) {
  409. return $original;
  410. }
  411. $undefined = new stdClass(); // Symbol hack.
  412. $post_value = $this->post_value( $undefined );
  413. if ( $undefined !== $post_value ) {
  414. $value = $post_value;
  415. } else {
  416. /*
  417. * Note that we don't use $original here because preview() will
  418. * not add the filter in the first place if it has an initial value
  419. * and there is no post value.
  420. */
  421. $value = $this->default;
  422. }
  423. return $value;
  424. }
  425. /**
  426. * Callback function to filter multidimensional theme mods and options.
  427. *
  428. * For all multidimensional settings of a given type, the preview filter for
  429. * the first setting previewed will be used to apply the values for the others.
  430. *
  431. * @since 4.4.0
  432. *
  433. * @see WP_Customize_Setting::$aggregated_multidimensionals
  434. * @param mixed $original Original root value.
  435. * @return mixed New or old value.
  436. */
  437. final public function _multidimensional_preview_filter( $original ) {
  438. if ( ! $this->is_current_blog_previewed() ) {
  439. return $original;
  440. }
  441. $id_base = $this->id_data['base'];
  442. // If no settings have been previewed yet (which should not be the case, since $this is), just pass through the original value.
  443. if ( empty( self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['previewed_instances'] ) ) {
  444. return $original;
  445. }
  446. foreach ( self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['previewed_instances'] as $previewed_setting ) {
  447. // Skip applying previewed value for any settings that have already been applied.
  448. if ( ! empty( self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['preview_applied_instances'][ $previewed_setting->id ] ) ) {
  449. continue;
  450. }
  451. // Do the replacements of the posted/default sub value into the root value.
  452. $value = $previewed_setting->post_value( $previewed_setting->default );
  453. $root = self::$aggregated_multidimensionals[ $previewed_setting->type ][ $id_base ]['root_value'];
  454. $root = $previewed_setting->multidimensional_replace( $root, $previewed_setting->id_data['keys'], $value );
  455. self::$aggregated_multidimensionals[ $previewed_setting->type ][ $id_base ]['root_value'] = $root;
  456. // Mark this setting having been applied so that it will be skipped when the filter is called again.
  457. self::$aggregated_multidimensionals[ $previewed_setting->type ][ $id_base ]['preview_applied_instances'][ $previewed_setting->id ] = true;
  458. }
  459. return self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['root_value'];
  460. }
  461. /**
  462. * Checks user capabilities and theme supports, and then saves
  463. * the value of the setting.
  464. *
  465. * @since 3.4.0
  466. *
  467. * @return void|false Void on success, false if cap check fails
  468. * or value isn't set or is invalid.
  469. */
  470. final public function save() {
  471. $value = $this->post_value();
  472. if ( ! $this->check_capabilities() || ! isset( $value ) ) {
  473. return false;
  474. }
  475. $id_base = $this->id_data['base'];
  476. /**
  477. * Fires when the WP_Customize_Setting::save() method is called.
  478. *
  479. * The dynamic portion of the hook name, `$id_base` refers to
  480. * the base slug of the setting name.
  481. *
  482. * @since 3.4.0
  483. *
  484. * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
  485. */
  486. do_action( "customize_save_{$id_base}", $this );
  487. $this->update( $value );
  488. }
  489. /**
  490. * Fetch and sanitize the $_POST value for the setting.
  491. *
  492. * During a save request prior to save, post_value() provides the new value while value() does not.
  493. *
  494. * @since 3.4.0
  495. *
  496. * @param mixed $default_value A default value which is used as a fallback. Default null.
  497. * @return mixed The default value on failure, otherwise the sanitized and validated value.
  498. */
  499. final public function post_value( $default_value = null ) {
  500. return $this->manager->post_value( $this, $default_value );
  501. }
  502. /**
  503. * Sanitize an input.
  504. *
  505. * @since 3.4.0
  506. *
  507. * @param string|array $value The value to sanitize.
  508. * @return string|array|null|WP_Error Sanitized value, or `null`/`WP_Error` if invalid.
  509. */
  510. public function sanitize( $value ) {
  511. /**
  512. * Filters a Customize setting value in un-slashed form.
  513. *
  514. * @since 3.4.0
  515. *
  516. * @param mixed $value Value of the setting.
  517. * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
  518. */
  519. return apply_filters( "customize_sanitize_{$this->id}", $value, $this );
  520. }
  521. /**
  522. * Validates an input.
  523. *
  524. * @since 4.6.0
  525. *
  526. * @see WP_REST_Request::has_valid_params()
  527. *
  528. * @param mixed $value Value to validate.
  529. * @return true|WP_Error True if the input was validated, otherwise WP_Error.
  530. */
  531. public function validate( $value ) {
  532. if ( is_wp_error( $value ) ) {
  533. return $value;
  534. }
  535. if ( is_null( $value ) ) {
  536. return new WP_Error( 'invalid_value', __( 'Invalid value.' ) );
  537. }
  538. $validity = new WP_Error();
  539. /**
  540. * Validates a Customize setting value.
  541. *
  542. * Plugins should amend the `$validity` object via its `WP_Error::add()` method.
  543. *
  544. * The dynamic portion of the hook name, `$this->ID`, refers to the setting ID.
  545. *
  546. * @since 4.6.0
  547. *
  548. * @param WP_Error $validity Filtered from `true` to `WP_Error` when invalid.
  549. * @param mixed $value Value of the setting.
  550. * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
  551. */
  552. $validity = apply_filters( "customize_validate_{$this->id}", $validity, $value, $this );
  553. if ( is_wp_error( $validity ) && ! $validity->has_errors() ) {
  554. $validity = true;
  555. }
  556. return $validity;
  557. }
  558. /**
  559. * Get the root value for a setting, especially for multidimensional ones.
  560. *
  561. * @since 4.4.0
  562. *
  563. * @param mixed $default_value Value to return if root does not exist.
  564. * @return mixed
  565. */
  566. protected function get_root_value( $default_value = null ) {
  567. $id_base = $this->id_data['base'];
  568. if ( 'option' === $this->type ) {
  569. return get_option( $id_base, $default_value );
  570. } elseif ( 'theme_mod' === $this->type ) {
  571. return get_theme_mod( $id_base, $default_value );
  572. } else {
  573. /*
  574. * Any WP_Customize_Setting subclass implementing aggregate multidimensional
  575. * will need to override this method to obtain the data from the appropriate
  576. * location.
  577. */
  578. return $default_value;
  579. }
  580. }
  581. /**
  582. * Set the root value for a setting, especially for multidimensional ones.
  583. *
  584. * @since 4.4.0
  585. *
  586. * @param mixed $value Value to set as root of multidimensional setting.
  587. * @return bool Whether the multidimensional root was updated successfully.
  588. */
  589. protected function set_root_value( $value ) {
  590. $id_base = $this->id_data['base'];
  591. if ( 'option' === $this->type ) {
  592. $autoload = true;
  593. if ( isset( self::$aggregated_multidimensionals[ $this->type ][ $this->id_data['base'] ]['autoload'] ) ) {
  594. $autoload = self::$aggregated_multidimensionals[ $this->type ][ $this->id_data['base'] ]['autoload'];
  595. }
  596. return update_option( $id_base, $value, $autoload );
  597. } elseif ( 'theme_mod' === $this->type ) {
  598. set_theme_mod( $id_base, $value );
  599. return true;
  600. } else {
  601. /*
  602. * Any WP_Customize_Setting subclass implementing aggregate multidimensional
  603. * will need to override this method to obtain the data from the appropriate
  604. * location.
  605. */
  606. return false;
  607. }
  608. }
  609. /**
  610. * Save the value of the setting, using the related API.
  611. *
  612. * @since 3.4.0
  613. *
  614. * @param mixed $value The value to update.
  615. * @return bool The result of saving the value.
  616. */
  617. protected function update( $value ) {
  618. $id_base = $this->id_data['base'];
  619. if ( 'option' === $this->type || 'theme_mod' === $this->type ) {
  620. if ( ! $this->is_multidimensional_aggregated ) {
  621. return $this->set_root_value( $value );
  622. } else {
  623. $root = self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['root_value'];
  624. $root = $this->multidimensional_replace( $root, $this->id_data['keys'], $value );
  625. self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['root_value'] = $root;
  626. return $this->set_root_value( $root );
  627. }
  628. } else {
  629. /**
  630. * Fires when the WP_Customize_Setting::update() method is called for settings
  631. * not handled as theme_mods or options.
  632. *
  633. * The dynamic portion of the hook name, `$this->type`, refers to the type of setting.
  634. *
  635. * @since 3.4.0
  636. *
  637. * @param mixed $value Value of the setting.
  638. * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
  639. */
  640. do_action( "customize_update_{$this->type}", $value, $this );
  641. return has_action( "customize_update_{$this->type}" );
  642. }
  643. }
  644. /**
  645. * Deprecated method.
  646. *
  647. * @since 3.4.0
  648. * @deprecated 4.4.0 Deprecated in favor of update() method.
  649. */
  650. protected function _update_theme_mod() {
  651. _deprecated_function( __METHOD__, '4.4.0', __CLASS__ . '::update()' );
  652. }
  653. /**
  654. * Deprecated method.
  655. *
  656. * @since 3.4.0
  657. * @deprecated 4.4.0 Deprecated in favor of update() method.
  658. */
  659. protected function _update_option() {
  660. _deprecated_function( __METHOD__, '4.4.0', __CLASS__ . '::update()' );
  661. }
  662. /**
  663. * Fetch the value of the setting.
  664. *
  665. * @since 3.4.0
  666. *
  667. * @return mixed The value.
  668. */
  669. public function value() {
  670. $id_base = $this->id_data['base'];
  671. $is_core_type = ( 'option' === $this->type || 'theme_mod' === $this->type );
  672. if ( ! $is_core_type && ! $this->is_multidimensional_aggregated ) {
  673. // Use post value if previewed and a post value is present.
  674. if ( $this->is_previewed ) {
  675. $value = $this->post_value( null );
  676. if ( null !== $value ) {
  677. return $value;
  678. }
  679. }
  680. $value = $this->get_root_value( $this->default );
  681. /**
  682. * Filters a Customize setting value not handled as a theme_mod or option.
  683. *
  684. * The dynamic portion of the hook name, `$id_base`, refers to
  685. * the base slug of the setting name, initialized from `$this->id_data['base']`.
  686. *
  687. * For settings handled as theme_mods or options, see those corresponding
  688. * functions for available hooks.
  689. *
  690. * @since 3.4.0
  691. * @since 4.6.0 Added the `$this` setting instance as the second parameter.
  692. *
  693. * @param mixed $default_value The setting default value. Default empty.
  694. * @param WP_Customize_Setting $setting The setting instance.
  695. */
  696. $value = apply_filters( "customize_value_{$id_base}", $value, $this );
  697. } elseif ( $this->is_multidimensional_aggregated ) {
  698. $root_value = self::$aggregated_multidimensionals[ $this->type ][ $id_base ]['root_value'];
  699. $value = $this->multidimensional_get( $root_value, $this->id_data['keys'], $this->default );
  700. // Ensure that the post value is used if the setting is previewed, since preview filters aren't applying on cached $root_value.
  701. if ( $this->is_previewed ) {
  702. $value = $this->post_value( $value );
  703. }
  704. } else {
  705. $value = $this->get_root_value( $this->default );
  706. }
  707. return $value;
  708. }
  709. /**
  710. * Sanitize the setting's value for use in JavaScript.
  711. *
  712. * @since 3.4.0
  713. *
  714. * @return mixed The requested escaped value.
  715. */
  716. public function js_value() {
  717. /**
  718. * Filters a Customize setting value for use in JavaScript.
  719. *
  720. * The dynamic portion of the hook name, `$this->id`, refers to the setting ID.
  721. *
  722. * @since 3.4.0
  723. *
  724. * @param mixed $value The setting value.
  725. * @param WP_Customize_Setting $setting WP_Customize_Setting instance.
  726. */
  727. $value = apply_filters( "customize_sanitize_js_{$this->id}", $this->value(), $this );
  728. if ( is_string( $value ) ) {
  729. return html_entity_decode( $value, ENT_QUOTES, 'UTF-8' );
  730. }
  731. return $value;
  732. }
  733. /**
  734. * Retrieves the data to export to the client via JSON.
  735. *
  736. * @since 4.6.0
  737. *
  738. * @return array Array of parameters passed to JavaScript.
  739. */
  740. public function json() {
  741. return array(
  742. 'value' => $this->js_value(),
  743. 'transport' => $this->transport,
  744. 'dirty' => $this->dirty,
  745. 'type' => $this->type,
  746. );
  747. }
  748. /**
  749. * Validate user capabilities whether the theme supports the setting.
  750. *
  751. * @since 3.4.0
  752. *
  753. * @return bool False if theme doesn't support the setting or user can't change setting, otherwise true.
  754. */
  755. final public function check_capabilities() {
  756. if ( $this->capability && ! current_user_can( $this->capability ) ) {
  757. return false;
  758. }
  759. if ( $this->theme_supports && ! current_theme_supports( ... (array) $this->theme_supports ) ) {
  760. return false;
  761. }
  762. return true;
  763. }
  764. /**
  765. * Multidimensional helper function.
  766. *
  767. * @since 3.4.0
  768. *
  769. * @param array $root
  770. * @param array $keys
  771. * @param bool $create Default false.
  772. * @return array|void Keys are 'root', 'node', and 'key'.
  773. */
  774. final protected function multidimensional( &$root, $keys, $create = false ) {
  775. if ( $create && empty( $root ) ) {
  776. $root = array();
  777. }
  778. if ( ! isset( $root ) || empty( $keys ) ) {
  779. return;
  780. }
  781. $last = array_pop( $keys );
  782. $node = &$root;
  783. foreach ( $keys as $key ) {
  784. if ( $create && ! isset( $node[ $key ] ) ) {
  785. $node[ $key ] = array();
  786. }
  787. if ( ! is_array( $node ) || ! isset( $node[ $key ] ) ) {
  788. return;
  789. }
  790. $node = &$node[ $key ];
  791. }
  792. if ( $create ) {
  793. if ( ! is_array( $node ) ) {
  794. // Account for an array overriding a string or object value.
  795. $node = array();
  796. }
  797. if ( ! isset( $node[ $last ] ) ) {
  798. $node[ $last ] = array();
  799. }
  800. }
  801. if ( ! isset( $node[ $last ] ) ) {
  802. return;
  803. }
  804. return array(
  805. 'root' => &$root,
  806. 'node' => &$node,
  807. 'key' => $last,
  808. );
  809. }
  810. /**
  811. * Will attempt to replace a specific value in a multidimensional array.
  812. *
  813. * @since 3.4.0
  814. *
  815. * @param array $root
  816. * @param array $keys
  817. * @param mixed $value The value to update.
  818. * @return mixed
  819. */
  820. final protected function multidimensional_replace( $root, $keys, $value ) {
  821. if ( ! isset( $value ) ) {
  822. return $root;
  823. } elseif ( empty( $keys ) ) { // If there are no keys, we're replacing the root.
  824. return $value;
  825. }
  826. $result = $this->multidimensional( $root, $keys, true );
  827. if ( isset( $result ) ) {
  828. $result['node'][ $result['key'] ] = $value;
  829. }
  830. return $root;
  831. }
  832. /**
  833. * Will attempt to fetch a specific value from a multidimensional array.
  834. *
  835. * @since 3.4.0
  836. *
  837. * @param array $root
  838. * @param array $keys
  839. * @param mixed $default_value A default value which is used as a fallback. Default null.
  840. * @return mixed The requested value or the default value.
  841. */
  842. final protected function multidimensional_get( $root, $keys, $default_value = null ) {
  843. if ( empty( $keys ) ) { // If there are no keys, test the root.
  844. return isset( $root ) ? $root : $default_value;
  845. }
  846. $result = $this->multidimensional( $root, $keys );
  847. return isset( $result ) ? $result['node'][ $result['key'] ] : $default_value;
  848. }
  849. /**
  850. * Will attempt to check if a specific value in a multidimensional array is set.
  851. *
  852. * @since 3.4.0
  853. *
  854. * @param array $root
  855. * @param array $keys
  856. * @return bool True if value is set, false if not.
  857. */
  858. final protected function multidimensional_isset( $root, $keys ) {
  859. $result = $this->multidimensional_get( $root, $keys );
  860. return isset( $result );
  861. }
  862. }
  863. /**
  864. * WP_Customize_Filter_Setting class.
  865. */
  866. require_once ABSPATH . WPINC . '/customize/class-wp-customize-filter-setting.php';
  867. /**
  868. * WP_Customize_Header_Image_Setting class.
  869. */
  870. require_once ABSPATH . WPINC . '/customize/class-wp-customize-header-image-setting.php';
  871. /**
  872. * WP_Customize_Background_Image_Setting class.
  873. */
  874. require_once ABSPATH . WPINC . '/customize/class-wp-customize-background-image-setting.php';
  875. /**
  876. * WP_Customize_Nav_Menu_Item_Setting class.
  877. */
  878. require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-item-setting.php';
  879. /**
  880. * WP_Customize_Nav_Menu_Setting class.
  881. */
  882. require_once ABSPATH . WPINC . '/customize/class-wp-customize-nav-menu-setting.php';