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/option.php

    r26304 r27262  
    44 *
    55 * @package WordPress
     6 * @subpackage Option
    67 */
    78
     
    1718 *
    1819 * @since 1.5.0
    19  * @package WordPress
    20  * @subpackage Option
    2120 * @uses apply_filters() Calls 'pre_option_$option' before checking the option.
    2221 *  Any value other than false will "short-circuit" the retrieval of the option
     
    9998 *
    10099 * @since 2.2.0
    101  * @package WordPress
    102  * @subpackage Option
    103100 *
    104101 * @param string $option Option name.
     
    114111 * @uses attr Sanitizes value.
    115112 * @since 1.5.0
    116  * @package WordPress
    117  * @subpackage Option
    118113 *
    119114 * @param string $option Option name.
     
    127122 *
    128123 * @since 2.2.0
    129  * @package WordPress
    130  * @subpackage Option
    131124 *
    132125 * @return array List of all options.
     
    160153 *
    161154 * @since 3.0.0
    162  * @package WordPress
    163  * @subpackage Option
    164155 *
    165156 * @param int $site_id Optional site ID for which to query the options. Defaults to the current site.
     
    200191 *
    201192 * @since 1.0.0
    202  * @package WordPress
    203  * @subpackage Option
    204193 *
    205194 * @uses apply_filters() Calls 'pre_update_option_$option' hook to allow overwriting the
     
    275264 * options the same as the ones which are protected.
    276265 *
    277  * @package WordPress
    278  * @subpackage Option
    279266 * @since 1.0.0
    280267 *
     
    344331 * Removes option by name. Prevents removal of protected WordPress options.
    345332 *
    346  * @package WordPress
    347  * @subpackage Option
    348333 * @since 1.2.0
    349334 *
     
    392377 *
    393378 * @since 2.8.0
    394  * @package WordPress
    395  * @subpackage Transient
    396379 *
    397380 * @uses do_action() Calls 'delete_transient_$transient' hook before transient is deleted.
     
    432415 *
    433416 * @since 2.8.0
    434  * @package WordPress
    435  * @subpackage Transient
    436417 *
    437418 * @param string $transient Transient name. Expected to not be SQL-escaped
     
    474455 *
    475456 * @since 2.8.0
    476  * @package WordPress
    477  * @subpackage Transient
    478457 *
    479458 * @uses apply_filters() Calls 'pre_set_transient_$transient' hook to allow overwriting the
     
    522501 * the settings.
    523502 *
    524  * @package WordPress
    525  * @subpackage Option
    526503 * @since 2.7.0
    527504 */
     
    569546 * Retrieve user interface setting value based on setting name.
    570547 *
    571  * @package WordPress
    572  * @subpackage Option
    573548 * @since 2.7.0
    574549 *
     
    589564 * This function has to be used before any output has started as it calls setcookie().
    590565 *
    591  * @package WordPress
    592  * @subpackage Option
    593566 * @since 2.8.0
    594567 *
     
    614587 * This function has to be used before any output has started as it calls setcookie().
    615588 *
    616  * @package WordPress
    617  * @subpackage Option
    618589 * @since 2.7.0
    619590 *
     
    646617 * Retrieve all user interface settings.
    647618 *
    648  * @package WordPress
    649  * @subpackage Option
    650619 * @since 2.7.0
    651620 *
     
    681650 * Private. Set all user interface settings.
    682651 *
    683  * @package WordPress
    684  * @subpackage Option
    685652 * @since 2.8.0
    686653 *
     
    718685 * Delete the user settings of the current user.
    719686 *
    720  * @package WordPress
    721  * @subpackage Option
    722687 * @since 2.7.0
    723688 */
     
    734699 *
    735700 * @see get_option()
    736  * @package WordPress
    737  * @subpackage Option
    738701 * @since 2.8.0
    739702 *
     
    796759 *
    797760 * @see add_option()
    798  * @package WordPress
    799  * @subpackage Option
    800761 * @since 2.8.0
    801762 *
     
    857818 *
    858819 * @see delete_option()
    859  * @package WordPress
    860  * @subpackage Option
    861820 * @since 2.8.0
    862821 *
     
    900859 * @see update_option()
    901860 * @since 2.8.0
    902  * @package WordPress
    903  * @subpackage Option
    904861 *
    905862 * @uses apply_filters() Calls 'pre_update_site_option_$option' hook to allow overwriting the
     
    958915 *
    959916 * @since 2.9.0
    960  * @package WordPress
    961  * @subpackage Transient
    962917 *
    963918 * @uses do_action() Calls 'delete_site_transient_$transient' hook before transient is deleted.
     
    991946 * @see get_transient()
    992947 * @since 2.9.0
    993  * @package WordPress
    994  * @subpackage Transient
    995948 *
    996949 * @uses apply_filters() Calls 'pre_site_transient_$transient' hook before checking the transient.
     
    1039992 * @see set_transient()
    1040993 * @since 2.9.0
    1041  * @package WordPress
    1042  * @subpackage Transient
    1043994 *
    1044995 * @uses apply_filters() Calls 'pre_set_site_transient_$transient' hook to allow overwriting the
Note: See TracChangeset for help on using the changeset viewer.