Add (more) missing doc blocks to wp-admin/includes/*.

See #32444.


git-svn-id: https://develop.svn.wordpress.org/trunk@32655 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor
2015-05-29 21:16:59 +00:00
parent ec5758225c
commit 60e5c90e62
9 changed files with 161 additions and 15 deletions
+6
View File
@@ -163,6 +163,8 @@ function install_dashboard() {
* Display search form for searching plugins.
*
* @since 2.7.0
*
* @param bool $type_selector
*/
function install_search_form( $type_selector = true ) {
$type = isset($_REQUEST['type']) ? wp_unslash( $_REQUEST['type'] ) : 'term';
@@ -261,6 +263,10 @@ function display_plugins_table() {
* Determine the status we can perform on a plugin.
*
* @since 3.0.0
*
* @param array|object $api
* @param bool $loop
* @return type
*/
function install_plugin_install_status($api, $loop = false) {
// This function is called recursively, $loop prevents further loops.