- Timestamp:
- 05/29/2015 08:16:22 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-ms-users-list-table.php
r32644 r32654 9 9 */ 10 10 class WP_MS_Users_List_Table extends WP_List_Table { 11 11 /** 12 * 13 * @return bool 14 */ 12 15 public function ajax_user_can() { 13 16 return current_user_can( 'manage_network_users' ); … … 80 83 } 81 84 85 /** 86 * 87 * @return array 88 */ 82 89 protected function get_bulk_actions() { 83 90 $actions = array(); … … 128 135 } 129 136 137 /** 138 * 139 * @return array 140 */ 130 141 public function get_columns() { 131 142 $users_columns = array( … … 145 156 * 'name', 'email', 'registered', 'blogs'. 146 157 */ 147 $users_columns = apply_filters( 'wpmu_users_columns', $users_columns ); 148 149 return $users_columns; 150 } 151 158 return apply_filters( 'wpmu_users_columns', $users_columns ); 159 } 160 161 /** 162 * 163 * @return array 164 */ 152 165 protected function get_sortable_columns() { 153 166 return array( … … 209 222 } else { 210 223 echo "<td $attributes>"; 211 224 212 225 switch ( $column_name ) { 213 226 case 'username':
Note: See TracChangeset
for help on using the changeset viewer.