- Timestamp:
- 10/25/2015 07:57:46 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/customize/class-wp-widget-area-customize-control.php
r35389 r35393 16 16 */ 17 17 class WP_Widget_Area_Customize_Control extends WP_Customize_Control { 18 19 /** 20 * Customize control type. 21 * 22 * @since 3.9.0 23 * @access public 24 * @var string 25 */ 18 26 public $type = 'sidebar_widgets'; 27 28 /** 29 * Sidebar ID. 30 * 31 * @since 3.9.0 32 * @access public 33 * @var int|string 34 */ 19 35 public $sidebar_id; 20 36 37 /** 38 * Refreshes the parameters passed to the JavaScript via JSON. 39 * 40 * @since 3.9.0 41 * @access public 42 */ 21 43 public function to_json() { 22 44 parent::to_json(); … … 28 50 29 51 /** 52 * Renders the control's content. 53 * 54 * @since 3.9.0 30 55 * @access public 31 56 */
Note: See TracChangeset
for help on using the changeset viewer.