Changeset 42875 for trunk/src/wp-admin/includes/ms.php
- Timestamp:
- 03/25/2018 06:09:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ms.php
r42836 r42875 127 127 * @since MU (3.0.0) 128 128 * 129 * @param array $tables The site tables to be dropped.130 * @param int $blog_id The ID of the site to drop tables for.129 * @param string[] $tables Array of names of the site tables to be dropped. 130 * @param int $blog_id The ID of the site to drop tables for. 131 131 */ 132 132 $drop_tables = apply_filters( 'wpmu_drop_tables', $tables, $blog_id ); … … 666 666 * @since MU (3.0.0) 667 667 * 668 * @param array $lang_codes Key/value pairof language codes where key is the short version.669 * @param string $code A two-letter designation of the language.668 * @param string[] $lang_codes Array of key/value pairs of language codes where key is the short version. 669 * @param string $code A two-letter designation of the language. 670 670 */ 671 671 $lang_codes = apply_filters( 'lang_codes', $lang_codes, $code ); … … 761 761 * @since 3.0.0 762 762 * 763 * @param array$lang_files Optional. An array of the language files. Default empty array.764 * @param string $current Optional. The current language code. Default empty.763 * @param string[] $lang_files Optional. An array of the language files. Default empty array. 764 * @param string $current Optional. The current language code. Default empty. 765 765 */ 766 766 function mu_dropdown_languages( $lang_files = array(), $current = '' ) { … … 797 797 * @since MU (3.0.0) 798 798 * 799 * @param array $output HTML output ofthe dropdown.800 * @param array $lang_files Available language files.801 * @param string $currentThe current language code.799 * @param string[] $output Array of HTML output for the dropdown. 800 * @param string[] $lang_files Array of available language files. 801 * @param string $current The current language code. 802 802 */ 803 803 $output = apply_filters( 'mu_dropdown_languages', $output, $lang_files, $current );
Note: See TracChangeset
for help on using the changeset viewer.