Changeset 36828
- Timestamp:
- 03/03/2016 09:50:57 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r36560 r36828 79 79 80 80 /** 81 * Filter the full array of plugins to list in the Plugins list table.81 * Filters the full array of plugins to list in the Plugins list table. 82 82 * 83 83 * @since 3.0.0 … … 85 85 * @see get_plugins() 86 86 * 87 * @param array $ plugins An array of plugins to display in the list table.87 * @param array $all_plugins An array of plugins to display in the list table. 88 88 */ 89 $all_plugins = apply_filters( 'all_plugins', get_plugins() ); 90 89 91 $plugins = array( 90 'all' => apply_filters( 'all_plugins', get_plugins() ),91 'search' => array(),92 'active' => array(),93 'inactive' => array(),92 'all' => $all_plugins, 93 'search' => array(), 94 'active' => array(), 95 'inactive' => array(), 94 96 'recently_activated' => array(), 95 'upgrade' => array(),96 'mustuse' => array(),97 'dropins' => array()97 'upgrade' => array(), 98 'mustuse' => array(), 99 'dropins' => array(), 98 100 ); 99 101
Note: See TracChangeset
for help on using the changeset viewer.