mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-11 12:20:22 +00:00
Docs: First pass at some inline docs fixes mostly made by PHPCBF.
See #49572, #50744 git-svn-id: https://develop.svn.wordpress.org/trunk@48586 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -207,7 +207,7 @@ class WP_Filesystem_SSH2 extends WP_Filesystem_Base {
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param string $command
|
||||
* @param bool $returnbool
|
||||
* @param bool $returnbool
|
||||
* @return bool|string True on success, false on failure. String if the command was executed, `$returnbool`
|
||||
* is false (default), and data from the resulting stream was retrieved.
|
||||
*/
|
||||
|
||||
@@ -233,8 +233,8 @@ class WP_List_Table {
|
||||
*
|
||||
* @since 4.0.0
|
||||
*
|
||||
* @param string $name Method to call.
|
||||
* @param array $arguments Arguments to pass when calling.
|
||||
* @param string $name Method to call.
|
||||
* @param array $arguments Arguments to pass when calling.
|
||||
* @return mixed|bool Return value of the callback, false otherwise.
|
||||
*/
|
||||
public function __call( $name, $arguments ) {
|
||||
|
||||
@@ -213,7 +213,6 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
||||
* @since 5.3.0
|
||||
*
|
||||
* @return array
|
||||
*
|
||||
*/
|
||||
protected function get_views() {
|
||||
$counts = wp_count_sites();
|
||||
|
||||
@@ -443,8 +443,8 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
||||
*
|
||||
* @since 4.3.0
|
||||
*
|
||||
* @param WP_User $user The current WP_User object.
|
||||
* @param string $column_name The current column name.
|
||||
* @param WP_User $user The current WP_User object.
|
||||
* @param string $column_name The current column name.
|
||||
*/
|
||||
public function column_default( $user, $column_name ) {
|
||||
/** This filter is documented in wp-admin/includes/class-wp-users-list-table.php */
|
||||
|
||||
@@ -714,7 +714,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
* @global WP_Query $wp_query WordPress Query object.
|
||||
* @global int $per_page
|
||||
* @param array $posts
|
||||
* @param int $level
|
||||
* @param int $level
|
||||
*/
|
||||
public function display_rows( $posts = array(), $level = 0 ) {
|
||||
global $wp_query, $per_page;
|
||||
@@ -734,7 +734,7 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
|
||||
/**
|
||||
* @param array $posts
|
||||
* @param int $level
|
||||
* @param int $level
|
||||
*/
|
||||
private function _display_rows( $posts, $level = 0 ) {
|
||||
$post_type = $this->screen->post_type;
|
||||
@@ -759,8 +759,8 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
* @global wpdb $wpdb WordPress database abstraction object.
|
||||
* @global WP_Post $post Global post object.
|
||||
* @param array $pages
|
||||
* @param int $pagenum
|
||||
* @param int $per_page
|
||||
* @param int $pagenum
|
||||
* @param int $per_page
|
||||
*/
|
||||
private function _display_rows_hierarchical( $pages, $pagenum = 1, $per_page = 20 ) {
|
||||
global $wpdb;
|
||||
@@ -865,11 +865,11 @@ class WP_Posts_List_Table extends WP_List_Table {
|
||||
* @since 4.2.0 Added the `$to_display` parameter.
|
||||
*
|
||||
* @param array $children_pages
|
||||
* @param int $count
|
||||
* @param int $parent
|
||||
* @param int $level
|
||||
* @param int $pagenum
|
||||
* @param int $per_page
|
||||
* @param int $count
|
||||
* @param int $parent
|
||||
* @param int $level
|
||||
* @param int $pagenum
|
||||
* @param int $per_page
|
||||
* @param array $to_display List of pages to be displayed. Passed by reference.
|
||||
*/
|
||||
private function _page_rows( &$children_pages, &$count, $parent, $level, $pagenum, $per_page, &$to_display ) {
|
||||
|
||||
@@ -10,6 +10,7 @@
|
||||
class WP_Site_Health_Auto_Updates {
|
||||
/**
|
||||
* WP_Site_Health_Auto_Updates constructor.
|
||||
*
|
||||
* @since 5.2.0
|
||||
*/
|
||||
public function __construct() {
|
||||
|
||||
@@ -269,13 +269,13 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||
|
||||
/**
|
||||
* @param string $taxonomy
|
||||
* @param array $terms
|
||||
* @param array $children
|
||||
* @param int $start
|
||||
* @param int $per_page
|
||||
* @param int $count
|
||||
* @param int $parent
|
||||
* @param int $level
|
||||
* @param array $terms
|
||||
* @param array $children
|
||||
* @param int $start
|
||||
* @param int $per_page
|
||||
* @param int $count
|
||||
* @param int $parent
|
||||
* @param int $level
|
||||
*/
|
||||
private function _rows( $taxonomy, $terms, &$children, $start, $per_page, &$count, $parent = 0, $level = 0 ) {
|
||||
|
||||
@@ -332,8 +332,8 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||
|
||||
/**
|
||||
* @global string $taxonomy
|
||||
* @param WP_Term $tag Term object.
|
||||
* @param int $level
|
||||
* @param WP_Term $tag Term object.
|
||||
* @param int $level
|
||||
*/
|
||||
public function single_row( $tag, $level = 0 ) {
|
||||
global $taxonomy;
|
||||
@@ -600,8 +600,8 @@ class WP_Terms_List_Table extends WP_List_Table {
|
||||
}
|
||||
|
||||
/**
|
||||
* @param WP_Term $tag Term object.
|
||||
* @param string $column_name
|
||||
* @param WP_Term $tag Term object.
|
||||
* @param string $column_name Name of the column.
|
||||
* @return string
|
||||
*/
|
||||
public function column_default( $tag, $column_name ) {
|
||||
|
||||
@@ -1167,7 +1167,7 @@ function wp_dashboard_trigger_widget_control( $widget_control_id = false ) {
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @param string $widget_id
|
||||
* @param array $form_inputs
|
||||
* @param array $form_inputs
|
||||
*/
|
||||
function wp_dashboard_rss_control( $widget_id, $form_inputs = array() ) {
|
||||
$widget_options = get_option( 'dashboard_widget_options' );
|
||||
|
||||
@@ -468,8 +468,8 @@ function _wp_make_subsizes( $new_sizes, $file, $image_meta, $attachment_id ) {
|
||||
*
|
||||
* @since 2.1.0
|
||||
*
|
||||
* @param int $attachment_id Attachment Id to process.
|
||||
* @param string $file Filepath of the Attached image.
|
||||
* @param int $attachment_id Attachment Id to process.
|
||||
* @param string $file Filepath of the Attached image.
|
||||
* @return mixed Metadata for attachment.
|
||||
*/
|
||||
function wp_generate_attachment_metadata( $attachment_id, $file ) {
|
||||
|
||||
@@ -665,7 +665,7 @@ function media_buttons( $editor_id = 'content' ) {
|
||||
/**
|
||||
* @global int $post_ID
|
||||
* @param string $type
|
||||
* @param int $post_id
|
||||
* @param int $post_id
|
||||
* @param string $tab
|
||||
* @return string
|
||||
*/
|
||||
@@ -1086,7 +1086,7 @@ function media_upload_library() {
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param WP_Post $post
|
||||
* @param string $checked
|
||||
* @param string $checked
|
||||
* @return string
|
||||
*/
|
||||
function image_align_input_fields( $post, $checked = '' ) {
|
||||
@@ -1123,7 +1123,7 @@ function image_align_input_fields( $post, $checked = '' ) {
|
||||
*
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param WP_Post $post
|
||||
* @param WP_Post $post
|
||||
* @param bool|string $check
|
||||
* @return array
|
||||
*/
|
||||
@@ -1202,7 +1202,7 @@ function image_size_input_fields( $post, $check = '' ) {
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param WP_Post $post
|
||||
* @param string $url_type
|
||||
* @param string $url_type
|
||||
* @return string
|
||||
*/
|
||||
function image_link_input_fields( $post, $url_type = '' ) {
|
||||
@@ -1250,7 +1250,7 @@ function wp_caption_input_textarea( $edit_post ) {
|
||||
*
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @param array $form_fields
|
||||
* @param array $form_fields
|
||||
* @param object $post
|
||||
* @return array
|
||||
*/
|
||||
@@ -1316,9 +1316,9 @@ function image_attachment_fields_to_save( $post, $attachment ) {
|
||||
*
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @param string $html
|
||||
* @param string $html
|
||||
* @param integer $attachment_id
|
||||
* @param array $attachment
|
||||
* @param array $attachment
|
||||
* @return string
|
||||
*/
|
||||
function image_media_send_to_editor( $html, $attachment_id, $attachment ) {
|
||||
@@ -1343,7 +1343,7 @@ function image_media_send_to_editor( $html, $attachment_id, $attachment ) {
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @param WP_Post $post
|
||||
* @param array $errors
|
||||
* @param array $errors
|
||||
* @return array
|
||||
*/
|
||||
function get_attachment_fields_to_edit( $post, $errors = null ) {
|
||||
@@ -1486,8 +1486,8 @@ function get_attachment_fields_to_edit( $post, $errors = null ) {
|
||||
*
|
||||
* @global WP_Query $wp_the_query WordPress Query object.
|
||||
*
|
||||
* @param int $post_id Optional. Post ID.
|
||||
* @param array $errors Errors for attachment, if any.
|
||||
* @param int $post_id Optional. Post ID.
|
||||
* @param array $errors Errors for attachment, if any.
|
||||
* @return string
|
||||
*/
|
||||
function get_media_items( $post_id, $errors ) {
|
||||
@@ -1539,8 +1539,8 @@ function get_media_items( $post_id, $errors ) {
|
||||
*
|
||||
* @global string $redir_tab
|
||||
*
|
||||
* @param int $attachment_id Attachment ID for modification.
|
||||
* @param string|array $args Optional. Override defaults.
|
||||
* @param int $attachment_id Attachment ID for modification.
|
||||
* @param string|array $args Optional. Override defaults.
|
||||
* @return string HTML form for attachment.
|
||||
*/
|
||||
function get_media_item( $attachment_id, $args = null ) {
|
||||
@@ -2271,8 +2271,8 @@ function media_upload_form( $errors = null ) {
|
||||
*
|
||||
* @since 2.5.0
|
||||
*
|
||||
* @param string $type
|
||||
* @param object $errors
|
||||
* @param string $type
|
||||
* @param object $errors
|
||||
* @param integer $id
|
||||
*/
|
||||
function media_upload_type_form( $type = 'file', $errors = null, $id = null ) {
|
||||
@@ -2345,8 +2345,8 @@ function media_upload_type_form( $type = 'file', $errors = null, $id = null ) {
|
||||
*
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param string $type
|
||||
* @param object $errors
|
||||
* @param string $type
|
||||
* @param object $errors
|
||||
* @param integer $id
|
||||
*/
|
||||
function media_upload_type_url_form( $type = null, $errors = null, $id = null ) {
|
||||
|
||||
@@ -903,7 +903,7 @@ function iis7_add_rewrite_rule( $filename, $rewrite_rule ) {
|
||||
* @since 2.8.0
|
||||
*
|
||||
* @param DOMDocument $doc
|
||||
* @param string $filename
|
||||
* @param string $filename
|
||||
*/
|
||||
function saveDomDocument( $doc, $filename ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
|
||||
$config = $doc->saveXML();
|
||||
|
||||
@@ -1136,8 +1136,8 @@ function _wp_delete_orphaned_draft_menu_items() {
|
||||
*
|
||||
* @since 3.6.0
|
||||
*
|
||||
* @param int|string $nav_menu_selected_id (id, slug, or name ) of the currently-selected menu
|
||||
* @param string $nav_menu_selected_title Title of the currently-selected menu
|
||||
* @param int|string $nav_menu_selected_id ID, slug, or name of the currently-selected menu.
|
||||
* @param string $nav_menu_selected_title Title of the currently-selected menu.
|
||||
* @return array The menu updated message
|
||||
*/
|
||||
function wp_nav_menu_update_menu_items( $nav_menu_selected_id, $nav_menu_selected_title ) {
|
||||
|
||||
@@ -719,6 +719,7 @@ All at ###SITENAME###
|
||||
|
||||
/**
|
||||
* Intercept personal data exporter page Ajax responses in order to assemble the personal data export file.
|
||||
*
|
||||
* @see wp_privacy_personal_data_export_page
|
||||
* @since 4.9.6
|
||||
*
|
||||
|
||||
@@ -29,8 +29,8 @@ $charset_collate = $wpdb->get_charset_collate();
|
||||
*
|
||||
* @global wpdb $wpdb WordPress database abstraction object.
|
||||
*
|
||||
* @param string $scope Optional. The tables for which to retrieve SQL. Can be all, global, ms_global, or blog tables. Defaults to all.
|
||||
* @param int $blog_id Optional. The site ID for which to retrieve SQL. Default is the current site ID.
|
||||
* @param string $scope Optional. The tables for which to retrieve SQL. Can be all, global, ms_global, or blog tables. Defaults to all.
|
||||
* @param int $blog_id Optional. The site ID for which to retrieve SQL. Default is the current site ID.
|
||||
* @return string The SQL needed to create the requested tables.
|
||||
*/
|
||||
function wp_get_db_schema( $scope = 'all', $blog_id = null ) {
|
||||
|
||||
Reference in New Issue
Block a user