Changeset 34320
- Timestamp:
- 09/19/2015 06:39:09 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-manager.php
r34269 r34320 25 25 * An instance of the theme being previewed. 26 26 * 27 * @since 3.4.0 28 * @access protected 27 29 * @var WP_Theme 28 30 */ … … 32 34 * The directory name of the previously active theme (within the theme_root). 33 35 * 36 * @since 3.4.0 37 * @access protected 34 38 * @var string 35 39 */ … … 39 43 * Whether this is a Customizer pageload. 40 44 * 45 * @since 3.4.0 46 * @access protected 41 47 * @var bool 42 48 */ … … 44 50 45 51 /** 46 * Methods and properties deailing with managing widgets in the Customizer. 47 * 52 * Methods and properties dealing with managing widgets in the Customizer. 53 * 54 * @since 3.9.0 55 * @access public 48 56 * @var WP_Customize_Widgets 49 57 */ … … 51 59 52 60 /** 53 * Methods and properties deailing with managing nav menus in the Customizer. 54 * 61 * Methods and properties dealing with managing nav menus in the Customizer. 62 * 63 * @since 4.3.0 64 * @access public 55 65 * @var WP_Customize_Nav_Menus 56 66 */ 57 67 public $nav_menus; 58 68 59 protected $settings = array(); 69 /** 70 * Registered instances of WP_Customize_Setting. 71 * 72 * @since 3.4.0 73 * @access protected 74 * @var array 75 */ 76 protected $settings = array(); 77 78 /** 79 * Sorted top-level instances of WP_Customize_Panel and WP_Customize_Section. 80 * 81 * @since 4.0.0 82 * @access protected 83 * @var array 84 */ 60 85 protected $containers = array(); 61 protected $panels = array(); 62 protected $sections = array(); 63 protected $controls = array(); 64 86 87 /** 88 * Registered instances of WP_Customize_Panel. 89 * 90 * @since 4.0.0 91 * @access protected 92 * @var array 93 */ 94 protected $panels = array(); 95 96 /** 97 * Registered instances of WP_Customize_Section. 98 * 99 * @since 3.4.0 100 * @access protected 101 * @var array 102 */ 103 protected $sections = array(); 104 105 /** 106 * Registered instances of WP_Customize_Control. 107 * 108 * @since 3.4.0 109 * @access protected 110 * @var array 111 */ 112 protected $controls = array(); 113 114 /** 115 * Return value of check_ajax_referer() in customize_preview_init() method. 116 * 117 * @since 3.5.0 118 * @access protected 119 * @var false|int 120 */ 65 121 protected $nonce_tick; 66 67 protected $customized;68 122 69 123 /** … … 734 788 * @since 3.4.0 735 789 * 736 * @return mixed 790 * @param mixed $return Value passed through for wp_die_handler filter. 791 * @return mixed Value passed through for wp_die_handler filter. 737 792 */ 738 793 public function remove_preview_signature( $return = null ) { … … 1314 1369 1315 1370 /** 1316 * Returnwhether the user agent is iOS.1371 * Determine whether the user agent is iOS. 1317 1372 * 1318 1373 * @since 4.4.0 1319 1374 * @access public 1320 1375 * 1321 * @return bool 1376 * @return bool Whether the user agent is iOS. 1322 1377 */ 1323 1378 public function is_ios() { … … 1331 1386 * @access public 1332 1387 * 1333 * @return string 1388 * @return string The template string for the document title. 1334 1389 */ 1335 1390 public function get_document_title_template() { … … 1351 1406 * @access public 1352 1407 * 1353 * @param string $preview_url 1408 * @param string $preview_url URL to be previewed. 1354 1409 */ 1355 1410 public function set_preview_url( $preview_url ) { … … 1363 1418 * @access public 1364 1419 * 1365 * @return string 1420 * @return string URL being previewed. 1366 1421 */ 1367 1422 public function get_preview_url() { … … 1382 1437 * @access public 1383 1438 * 1384 * @param string $return_url 1439 * @param string $return_url URL for return link. 1385 1440 */ 1386 1441 public function set_return_url( $return_url ) { … … 1396 1451 * @access public 1397 1452 * 1398 * @return string 1453 * @return string URL for link to close Customizer. 1399 1454 */ 1400 1455 public function get_return_url() { … … 1414 1469 * Set the autofocused constructs. 1415 1470 * 1471 * @since 4.4.0 1472 * @access public 1473 * 1416 1474 * @param array $autofocus { 1417 1475 * Mapping of 'panel', 'section', 'control' to the ID which should be autofocused. … … 1447 1505 * Print JavaScript settings for parent window. 1448 1506 * 1449 * @since 4. 3.01507 * @since 4.4.0 1450 1508 */ 1451 1509 public function customize_pane_settings() {
Note: See TracChangeset
for help on using the changeset viewer.