Docs: Update the type for `$callback` parameters to `callable` in DocBlocks for `add_settings_section()` and `add_settings_field()`.

Props aidanlane.
Fixes #35772.

Built from https://develop.svn.wordpress.org/trunk@36642


git-svn-id: http://core.svn.wordpress.org/trunk@36609 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-02-23 18:05:27 +00:00
parent 410ed6d615
commit e66a510e0c
2 changed files with 17 additions and 15 deletions

View File

@ -1188,8 +1188,10 @@ function do_accordion_sections( $screen, $context, $object ) {
* *
* @param string $id Slug-name to identify the section. Used in the 'id' attribute of tags. * @param string $id Slug-name to identify the section. Used in the 'id' attribute of tags.
* @param string $title Formatted title of the section. Shown as the heading for the section. * @param string $title Formatted title of the section. Shown as the heading for the section.
* @param string $callback Function that echos out any content at the top of the section (between heading and fields). * @param callable $callback Function that echos out any content at the top of the section (between heading and fields).
* @param string $page The slug-name of the settings page on which to show the section. Built-in pages include 'general', 'reading', 'writing', 'discussion', 'media', etc. Create your own using add_options_page(); * @param string $page The slug-name of the settings page on which to show the section. Built-in pages include
* 'general', 'reading', 'writing', 'discussion', 'media', etc. Create your own using
* add_options_page();
*/ */
function add_settings_section($id, $title, $callback, $page) { function add_settings_section($id, $title, $callback, $page) {
global $wp_settings_sections; global $wp_settings_sections;
@ -1226,7 +1228,7 @@ function add_settings_section($id, $title, $callback, $page) {
* @param string $id Slug-name to identify the field. Used in the 'id' attribute of tags. * @param string $id Slug-name to identify the field. Used in the 'id' attribute of tags.
* @param string $title Formatted title of the field. Shown as the label for the field * @param string $title Formatted title of the field. Shown as the label for the field
* during output. * during output.
* @param string $callback Function that fills the field with the desired form inputs. The * @param callable $callback Function that fills the field with the desired form inputs. The
* function should echo its output. * function should echo its output.
* @param string $page The slug-name of the settings page on which to show the section * @param string $page The slug-name of the settings page on which to show the section
* (general, reading, writing, ...). * (general, reading, writing, ...).

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-alpha-36641'; $wp_version = '4.5-alpha-36642';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.