Changeset 33219
- Timestamp:
- 07/13/2015 08:43:51 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-customize-panel.php
r32965 r33219 28 28 * @static 29 29 * @access protected 30 * @static 30 31 * @var int 31 32 */ … … 312 313 * 313 314 * This function is only run for panel types that have been registered with 314 * {@see WP_Customize_Manager::register_panel_type()}. 315 * 316 * @since 4.3.0 315 * WP_Customize_Manager::register_panel_type(). 316 * 317 * @since 4.3.0 318 * 319 * @see WP_Customize_Manager::register_panel_type() 317 320 */ 318 321 public function print_template() { … … 331 334 * 332 335 * Class variables for this panel class are available in the `data` JS object; 333 * export custom variables by overriding {@see WP_Customize_Panel::json()}.336 * export custom variables by overriding WP_Customize_Panel::json(). 334 337 * 335 338 * @see WP_Customize_Panel::print_template() 336 339 * 337 340 * @since 4.3.0 341 * @access protected 338 342 */ 339 343 protected function render_template() { … … 353 357 * 354 358 * Class variables for this panel class are available in the `data` JS object; 355 * export custom variables by overriding {@see WP_Customize_Panel::json()}.359 * export custom variables by overriding WP_Customize_Panel::json(). 356 360 * 357 361 * @see WP_Customize_Panel::print_template() 358 362 * 359 363 * @since 4.3.0 364 * @access protected 360 365 */ 361 366 protected function content_template() { … … 386 391 * 387 392 * @since 4.3.0 393 * 394 * @see WP_Customize_Panel 388 395 */ 389 396 class WP_Customize_Nav_Menus_Panel extends WP_Customize_Panel { … … 393 400 * 394 401 * @since 4.3.0 395 *396 402 * @access public 397 403 * @var string … … 403 409 * 404 410 * @since 4.3.0 411 * @access public 405 412 */ 406 413 public function render_screen_options() { … … 419 426 * 420 427 * @since 4.3.0 428 * @access public 421 429 * 422 430 * @return array The advanced menu properties. … … 438 446 * 439 447 * Class variables for this panel class are available in the `data` JS object; 440 * export custom variables by overriding {@see WP_Customize_Panel::json()}. 441 * 442 * @since 4.3.0 448 * export custom variables by overriding WP_Customize_Panel::json(). 449 * 450 * @since 4.3.0 451 * @access protected 443 452 * 444 453 * @see WP_Customize_Panel::print_template() 445 *446 * @since 4.3.0447 454 */ 448 455 protected function content_template() {
Note: See TracChangeset
for help on using the changeset viewer.