Changeset 37342 for trunk/src/wp-includes/class-wp-customize-panel.php
- Timestamp:
- 05/02/2016 03:59:56 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-panel.php
r36809 r37342 131 131 * 132 132 * @var callable Callback is called with one argument, the instance of 133 * {@see WP_Customize_Section}, and returns bool to indicate134 * whether the section is active (such as it relates to the URL135 * currentlybeing previewed).133 * WP_Customize_Section, and returns bool to indicate whether 134 * the section is active (such as it relates to the URL currently 135 * being previewed). 136 136 */ 137 137 public $active_callback = ''; … … 184 184 * @since 4.1.0 185 185 * 186 * @param bool $active 187 * @param WP_Customize_Panel $panel {@see WP_Customize_Panel}instance.186 * @param bool $active Whether the Customizer panel is active. 187 * @param WP_Customize_Panel $panel WP_Customize_Panel instance. 188 188 */ 189 189 $active = apply_filters( 'customize_panel_active', $active, $panel ); … … 193 193 194 194 /** 195 * Default callback used when invoking {@see WP_Customize_Panel::active()}.195 * Default callback used when invoking WP_Customize_Panel::active(). 196 196 * 197 197 * Subclasses can override this with their specific logic, or they may … … 291 291 * Render the panel container, and then its contents (via `this->render_content()`) in a subclass. 292 292 * 293 * Panel containers are now rendered in JS by default, see {@see WP_Customize_Panel::print_template()}.293 * Panel containers are now rendered in JS by default, see WP_Customize_Panel::print_template(). 294 294 * 295 295 * @since 4.0.0 … … 301 301 * Render the panel UI in a subclass. 302 302 * 303 * Panel contents are now rendered in JS by default, see {@see WP_Customize_Panel::print_template()}.303 * Panel contents are now rendered in JS by default, see WP_Customize_Panel::print_template(). 304 304 * 305 305 * @since 4.1.0
Note: See TracChangeset
for help on using the changeset viewer.