- Timestamp:
- 07/13/2014 10:08:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-users-list-table.php
r28497 r29137 128 128 * 129 129 * @since 3.1.0 130 * @access p ublic130 * @access protected 131 131 * 132 132 * @return array An array of HTML links, one for each view. 133 133 */ 134 p ublicfunction get_views() {134 protected function get_views() { 135 135 global $wp_roles, $role; 136 136 … … 174 174 * 175 175 * @since 3.1.0 176 * @access p ublic176 * @access protected 177 177 * 178 178 * @return array Array of bulk actions. 179 179 */ 180 p ublicfunction get_bulk_actions() {180 protected function get_bulk_actions() { 181 181 $actions = array(); 182 182 … … 196 196 * 197 197 * @since 3.1.0 198 * @access p ublic198 * @access protected 199 199 * 200 200 * @param string $which Whether this is being invoked above ("top") 201 201 * or below the table ("bottom"). 202 202 */ 203 p ublicfunction extra_tablenav( $which ) {203 protected function extra_tablenav( $which ) { 204 204 if ( 'top' != $which ) 205 205 return; … … 273 273 * 274 274 * @since 3.1.0 275 * @access p ublic275 * @access protected 276 276 * 277 277 * @return array Array of sortable columns. 278 278 */ 279 p ublicfunction get_sortable_columns() {279 protected function get_sortable_columns() { 280 280 $c = array( 281 281 'username' => 'login',
Note: See TracChangeset
for help on using the changeset viewer.