Changeset 31078
- Timestamp:
- 01/08/2015 05:43:54 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugin-install-list-table.php
r31055 r31078 10 10 class WP_Plugin_Install_List_Table extends WP_List_Table { 11 11 12 var$order = 'ASC';13 var$orderby = null;14 var$groups = array();12 public $order = 'ASC'; 13 public $orderby = null; 14 public $groups = array(); 15 15 16 16 public function ajax_user_can() { -
trunk/src/wp-includes/capabilities.php
r31049 r31078 422 422 * 423 423 * @since 2.0.0 424 * @access private425 424 * @var object 426 425 */ 427 var$data;426 public $data; 428 427 429 428 /** -
trunk/src/wp-includes/locale.php
r31077 r31078 18 18 * @since 2.1.0 19 19 * @var array 20 * @access private 21 */ 22 var $weekday; 20 */ 21 public $weekday; 23 22 24 23 /** … … 32 31 * @since 2.1.0 33 32 * @var array 34 * @access private 35 */ 36 var $weekday_initial; 33 */ 34 public $weekday_initial; 37 35 38 36 /** … … 41 39 * @since 2.1.0 42 40 * @var array 43 * @access private 44 */ 45 var $weekday_abbrev; 41 */ 42 public $weekday_abbrev; 46 43 47 44 /** … … 50 47 * @since 2.1.0 51 48 * @var array 52 * @access private 53 */ 54 var $month; 49 */ 50 public $month; 55 51 56 52 /** … … 59 55 * @since 2.1.0 60 56 * @var array 61 * @access private 62 */ 63 var $month_abbrev; 57 */ 58 public $month_abbrev; 64 59 65 60 /** … … 70 65 * @since 2.1.0 71 66 * @var array 72 * @access private 73 */ 74 var $meridiem; 67 */ 68 public $meridiem; 75 69 76 70 /** … … 81 75 * @since 2.1.0 82 76 * @var string 83 * @access private 84 */ 85 var $text_direction = 'ltr'; 86 87 /** 88 * @var array 89 */ 90 var $number_format; 77 */ 78 public $text_direction = 'ltr'; 79 80 /** 81 * @var array 82 */ 83 public $number_format; 91 84 92 85 /** -
trunk/src/wp-includes/rewrite.php
r30982 r31078 421 421 * 422 422 * @since 1.5.0 423 * @var string 424 */ 425 public $permalink_structure; 426 427 /** 428 * Whether to add trailing slashes. 429 * 430 * @since 2.2.0 431 * @var bool 432 */ 433 public $use_trailing_slashes; 434 435 /** 436 * Base for the author permalink structure (example.com/$author_base/authorname). 437 * 438 * @since 1.5.0 423 439 * @access private 424 440 * @var string 425 441 */ 426 var $permalink_structure; 427 428 /** 429 * Whether to add trailing slashes. 430 * 431 * @since 2.2.0 432 * @access private 433 * @var bool 434 */ 435 var $use_trailing_slashes; 436 437 /** 438 * Base for the author permalink structure (example.com/$author_base/authorname). 442 var $author_base = 'author'; 443 444 /** 445 * Permalink structure for author archives. 439 446 * 440 447 * @since 1.5.0 … … 442 449 * @var string 443 450 */ 444 var $author_ base = 'author';445 446 /** 447 * Permalink structure for authorarchives.451 var $author_structure; 452 453 /** 454 * Permalink structure for date archives. 448 455 * 449 456 * @since 1.5.0 … … 451 458 * @var string 452 459 */ 453 var $ author_structure;454 455 /** 456 * Permalink structure for date archives.460 var $date_structure; 461 462 /** 463 * Permalink structure for pages. 457 464 * 458 465 * @since 1.5.0 … … 460 467 * @var string 461 468 */ 462 var $ date_structure;463 464 /** 465 * Permalink structure for pages.469 var $page_structure; 470 471 /** 472 * Base of the search permalink structure (example.com/$search_base/query). 466 473 * 467 474 * @since 1.5.0 … … 469 476 * @var string 470 477 */ 471 var $ page_structure;472 473 /** 474 * Base of the search permalink structure (example.com/$search_base/query).478 var $search_base = 'search'; 479 480 /** 481 * Permalink structure for searches. 475 482 * 476 483 * @since 1.5.0 … … 478 485 * @var string 479 486 */ 480 var $search_ base = 'search';481 482 /** 483 * Permalink structure for searches.487 var $search_structure; 488 489 /** 490 * Comments permalink base. 484 491 * 485 492 * @since 1.5.0 … … 487 494 * @var string 488 495 */ 489 var $search_structure; 490 491 /** 492 * Comments permalink base. 496 var $comments_base = 'comments'; 497 498 /** 499 * Pagination permalink base. 500 * 501 * @since 3.1.0 502 * @var string 503 */ 504 public $pagination_base = 'page'; 505 506 /** 507 * Feed permalink base. 493 508 * 494 509 * @since 1.5.0 … … 496 511 * @var string 497 512 */ 498 var $ comments_base = 'comments';499 500 /** 501 * Pagination permalink base.502 * 503 * @since 3.1.0513 var $feed_base = 'feed'; 514 515 /** 516 * Comments feed permalink structure. 517 * 518 * @since 1.5.0 504 519 * @access private 505 520 * @var string 506 521 */ 507 var $pagination_base = 'page'; 508 509 /** 510 * Feed permalink base. 511 * 512 * @since 1.5.0 513 * @access private 514 * @var string 515 */ 516 var $feed_base = 'feed'; 517 518 /** 519 * Comments feed permalink structure. 520 * 521 * @since 1.5.0 522 * @access private 523 * @var string 524 */ 525 var $comments_feed_structure; 522 var $comment_feed_structure; 526 523 527 524 /** … … 543 540 * @see WP_Rewrite::init() 544 541 * @since 1.5.0 545 * @access private546 542 * @var string 547 543 */ 548 var$front;544 public $front; 549 545 550 546 /** … … 558 554 * @see WP_Rewrite::using_index_permalinks() 559 555 * @since 1.5.0 560 * @access private561 556 * @var string 562 557 */ 563 var$root = '';558 public $root = ''; 564 559 565 560 /** … … 747 742 * 748 743 * @since 1.5.0 749 * @access private750 744 * @var array 751 745 */ 752 var$feeds = array( 'feed', 'rdf', 'rss', 'rss2', 'atom' );746 public $feeds = array( 'feed', 'rdf', 'rss', 'rss2', 'atom' ); 753 747 754 748 /**
Note: See TracChangeset
for help on using the changeset viewer.