- Timestamp:
- 05/29/2015 09:31:56 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-themes-list-table.php
r32654 r32656 39 39 } 40 40 41 /** 42 * @access public 43 */ 41 44 public function prepare_items() { 42 45 $themes = wp_get_themes( array( 'allowed' => true ) ); … … 72 75 } 73 76 77 /** 78 * @access public 79 */ 74 80 public function no_items() { 75 81 if ( $this->search_terms || $this->features ) { … … 115 121 } 116 122 123 /** 124 * @access public 125 */ 117 126 public function display() { 118 127 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); … … 136 145 } 137 146 147 /** 148 * @access public 149 */ 138 150 public function display_rows_or_placeholder() { 139 151 if ( $this->has_items() ) { … … 146 158 } 147 159 160 /** 161 * @access public 162 */ 148 163 public function display_rows() { 149 164 $themes = $this->items;
Note: See TracChangeset
for help on using the changeset viewer.