Make WordPress Core


Ignore:
Timestamp:
02/25/2014 05:13:08 PM (11 years ago)
Author:
DrewAPicture
Message:

Remove all @package and @subpackage PHPDoc tags not at the file- or class-levels in core.

See #27200.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/plugin.php

    r27158 r27262  
    6464 * so everything is as quick as possible.
    6565 *
    66  * @package WordPress
    67  * @subpackage Plugin
    68  *
    6966 * @global array $wp_filter      A multidimensional array of all hooks and the callbacks hooked to them.
    7067 * @global array $merged_filters Tracks the tags that need to be merged for later. If the hook is added, it doesn't need to run through that process.
     
    9289 * Check if any filter has been registered for a hook.
    9390 *
    94  * @package WordPress
    95  * @subpackage Plugin
    9691 * @since 2.5.0
    9792 *
     
    148143 * </code>
    149144 *
    150  * @package WordPress
    151  * @subpackage Plugin
    152  *
    153145 * @global array $wp_filter         Stores all of the filters
    154146 * @global array $merged_filters    Merges the filter hooks using this function.
     
    214206 * functions hooked to <tt>$tag</tt> are supplied using an array.
    215207 *
    216  * @package WordPress
    217  * @subpackage Plugin
    218208 * @since 3.0.0
    219209 * @global array $wp_filter Stores all of the filters
     
    275265 * will be given on removal failure.
    276266 *
    277  * @package WordPress
    278  * @subpackage Plugin
    279  *
    280267 * @since 1.2.0
    281268 *
     
    329316 * Retrieve the name of the current filter or action.
    330317 *
    331  * @package WordPress
    332  * @subpackage Plugin
    333318 * @since 2.5.0
    334319 *
     
    350335 * @uses add_filter() Adds an action. Parameter list and functionality are the same.
    351336 *
    352  * @package WordPress
    353  * @subpackage Plugin
    354  *
    355337 * @since 1.2.0
    356338 *
     
    376358 * @see apply_filters() This function works similar with the exception that
    377359 * nothing is returned and only the functions or methods are called.
    378  *
    379  * @package WordPress
    380  * @subpackage Plugin
    381360 *
    382361 * @since 1.2.0
     
    442421 * Retrieve the number of times an action is fired.
    443422 *
    444  * @package WordPress
    445  * @subpackage Plugin
    446423 * @since 2.1.0
    447424 *
     
    466443 * functions hooked to <tt>$tag</tt> are supplied using an array.
    467444 *
    468  * @package WordPress
    469  * @subpackage Plugin
    470445 * @since 2.1.0
    471446 *
     
    522497 * Check if any action has been registered for a hook.
    523498 *
    524  * @package WordPress
    525  * @subpackage Plugin
    526499 * @since 2.5.0
    527500 *
     
    546519 * hook and possibly replace them with a substitute.
    547520 *
    548  * @package WordPress
    549  * @subpackage Plugin
    550  *
    551521 * @since 1.2.0
    552522 *
     
    582552 * This method extracts the name of a plugin from its filename.
    583553 *
    584  * @package WordPress
    585  * @subpackage Plugin
    586  *
    587554 * @since 1.5.0
    588555 *
     
    631598/**
    632599 * Gets the filesystem directory path (with trailing slash) for the plugin __FILE__ passed in
    633  * @package WordPress
    634  * @subpackage Plugin
     600 *
    635601 * @since 2.8.0
    636602 *
     
    644610/**
    645611 * Gets the URL directory path (with trailing slash) for the plugin __FILE__ passed in
    646  * @package WordPress
    647  * @subpackage Plugin
     612 *
    648613 * @since 2.8.0
    649614 *
     
    668633 * 'activate_sample.php'.
    669634 *
    670  * @package WordPress
    671  * @subpackage Plugin
    672635 * @since 2.0.0
    673636 *
     
    693656 * 'deactivate_sample.php'.
    694657 *
    695  * @package WordPress
    696  * @subpackage Plugin
    697658 * @since 2.0.0
    698659 *
     
    755716 * it will fail unless the all hook exists prior to this function call.
    756717 *
    757  * @package WordPress
    758  * @subpackage Plugin
    759718 * @since 2.5.0
    760719 * @access private
     
    793752 * shouldn't have any speed penalty.
    794753 *
    795  * @package WordPress
    796  * @subpackage Plugin
    797754 * @access private
    798755 * @since 2.2.3
Note: See TracChangeset for help on using the changeset viewer.