class-wp-customize-setting.php 28 KB

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