Changeset 53876
- Timestamp:
- 08/11/2022 01:53:51 PM (2 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-plugins-list-table.php
r52979 r53876 903 903 * 'activate', 'deactivate', and 'delete'. 904 904 * @param string $plugin_file Path to the plugin file relative to the plugins directory. 905 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`905 * @param array $plugin_data An array of plugin data. See get_plugin_data() 906 906 * and the {@see 'plugin_row_meta'} filter for the list 907 907 * of possible values. … … 923 923 * 'activate', 'deactivate', and 'delete'. 924 924 * @param string $plugin_file Path to the plugin file relative to the plugins directory. 925 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`925 * @param array $plugin_data An array of plugin data. See get_plugin_data() 926 926 * and the {@see 'plugin_row_meta'} filter for the list 927 927 * of possible values. … … 945 945 * this can also include 'network_active' and 'network_only' items. 946 946 * @param string $plugin_file Path to the plugin file relative to the plugins directory. 947 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`947 * @param array $plugin_data An array of plugin data. See get_plugin_data() 948 948 * and the {@see 'plugin_row_meta'} filter for the list 949 949 * of possible values. … … 967 967 * this can also include 'network_active' and 'network_only' items. 968 968 * @param string $plugin_file Path to the plugin file relative to the plugins directory. 969 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`969 * @param array $plugin_data An array of plugin data. See get_plugin_data() 970 970 * and the {@see 'plugin_row_meta'} filter for the list 971 971 * of possible values. … … 1230 1230 * time to next update. 1231 1231 * @param string $plugin_file Path to the plugin file relative to the plugins directory. 1232 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`1232 * @param array $plugin_data An array of plugin data. See get_plugin_data() 1233 1233 * and the {@see 'plugin_row_meta'} filter for the list 1234 1234 * of possible values. … … 1252 1252 * @param string $column_name Name of the column. 1253 1253 * @param string $plugin_file Path to the plugin file relative to the plugins directory. 1254 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`1254 * @param array $plugin_data An array of plugin data. See get_plugin_data() 1255 1255 * and the {@see 'plugin_row_meta'} filter for the list 1256 1256 * of possible values. … … 1328 1328 * 1329 1329 * @param string $plugin_file Path to the plugin file relative to the plugins directory. 1330 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`1330 * @param array $plugin_data An array of plugin data. See get_plugin_data() 1331 1331 * and the {@see 'plugin_row_meta'} filter for the list 1332 1332 * of possible values. … … 1349 1349 * 1350 1350 * @param string $plugin_file Path to the plugin file relative to the plugins directory. 1351 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`1351 * @param array $plugin_data An array of plugin data. See get_plugin_data() 1352 1352 * and the {@see 'plugin_row_meta'} filter for the list 1353 1353 * of possible values. -
trunk/src/wp-admin/includes/dashboard.php
r53383 r53876 1730 1730 * @param string $notice The notice content. 1731 1731 * @param array|false $response An array containing web browser information, or 1732 * false on failure. See `wp_check_browser_version()`.1732 * false on failure. See wp_check_browser_version(). 1733 1733 */ 1734 1734 echo apply_filters( 'browse-happy-notice', $notice, $response ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores -
trunk/src/wp-admin/includes/plugin.php
r53555 r53876 128 128 * 129 129 * @param string $plugin_file Path to the main plugin file. 130 * @param array $plugin_data An array of plugin data. See `get_plugin_data()`.130 * @param array $plugin_data An array of plugin data. See get_plugin_data(). 131 131 * @param bool $markup Optional. If the returned data should have HTML markup applied. 132 132 * Default true. … … 270 270 * 271 271 * @param string $plugin_folder Optional. Relative path to single plugin folder. 272 * @return array[] Array of arrays of plugin data, keyed by plugin file name. See `get_plugin_data()`.272 * @return array[] Array of arrays of plugin data, keyed by plugin file name. See get_plugin_data(). 273 273 */ 274 274 function get_plugins( $plugin_folder = '' ) { … … 358 358 * 359 359 * @since 3.0.0 360 * @return array[] Array of arrays of mu-plugin data, keyed by plugin file name. See `get_plugin_data()`.360 * @return array[] Array of arrays of mu-plugin data, keyed by plugin file name. See get_plugin_data(). 361 361 */ 362 362 function get_mu_plugins() { … … 430 430 * 431 431 * @since 3.0.0 432 * @return array[] Array of arrays of dropin plugin data, keyed by plugin file name. See `get_plugin_data()`.432 * @return array[] Array of arrays of dropin plugin data, keyed by plugin file name. See get_plugin_data(). 433 433 */ 434 434 function get_dropins() { -
trunk/src/wp-includes/post-template.php
r53715 r53876 1145 1145 * 1146 1146 * @param array|string $args { 1147 * Optional. Array or string of arguments to generate a page dropdown. See `get_pages()`for additional arguments.1147 * Optional. Array or string of arguments to generate a page dropdown. See get_pages() for additional arguments. 1148 1148 * 1149 1149 * @type int $depth Maximum depth. Default 0. … … 1237 1237 * 1238 1238 * @param array|string $args { 1239 * Optional. Array or string of arguments to generate a list of pages. See `get_pages()`for additional arguments.1239 * Optional. Array or string of arguments to generate a list of pages. See get_pages() for additional arguments. 1240 1240 * 1241 1241 * @type int $child_of Display only the sub-pages of a single page by ID. Default 0 (all pages). … … 1368 1368 * 1369 1369 * @param array|string $args { 1370 * Optional. Array or string of arguments to generate a page menu. See `wp_list_pages()`for additional arguments.1370 * Optional. Array or string of arguments to generate a page menu. See wp_list_pages() for additional arguments. 1371 1371 * 1372 1372 * @type string $sort_column How to sort the list of pages. Accepts post column names.
Note: See TracChangeset
for help on using the changeset viewer.