Make WordPress Core


Ignore:
Timestamp:
05/02/2016 03:59:56 AM (7 years ago)
Author:
DrewAPicture
Message:

Docs: Remove inline @see tags from function, class, and method references in inline docs.

Known functions, classes, and methods are now auto-linked in Code Reference pages following #meta1483.

Note: Hook references are still linked via inline @see tags due to the unlikelihood of reliably matching for known hooks based on a RegEx pattern.

See #32246.

File:
1 edited

Legend:

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

    r37331 r37342  
    571571             * Fires as a specific plugin is being activated.
    572572             *
    573              * This hook is the "activation" hook used internally by
    574              * {@see register_activation_hook()}. The dynamic portion of the
    575              * hook name, `$plugin`, refers to the plugin basename.
     573             * This hook is the "activation" hook used internally by register_activation_hook().
     574             * The dynamic portion of the hook name, `$plugin`, refers to the plugin basename.
    576575             *
    577              * If a plugin is silently activated (such as during an update),
    578              * this hook does not fire.
     576             * If a plugin is silently activated (such as during an update), this hook does not fire.
    579577             *
    580578             * @since 2.0.0
     
    686684             * Fires as a specific plugin is being deactivated.
    687685             *
    688              * This hook is the "deactivation" hook used internally by
    689              * {@see register_deactivation_hook()}. The dynamic portion of the
    690              * hook name, `$plugin`, refers to the plugin basename.
     686             * This hook is the "deactivation" hook used internally by register_deactivation_hook().
     687             * The dynamic portion of the hook name, `$plugin`, refers to the plugin basename.
    691688             *
    692              * If a plugin is silently deactivated (such as during an update),
    693              * this hook does not fire.
     689             * If a plugin is silently deactivated (such as during an update), this hook does not fire.
    694690             *
    695691             * @since 2.0.0
     
    10251021         *
    10261022         * The action concatenates the 'uninstall_' prefix with the basename of the
    1027          * plugin passed to {@see uninstall_plugin()} to create a dynamically-named action.
     1023         * plugin passed to uninstall_plugin() to create a dynamically-named action.
    10281024         *
    10291025         * @since 2.7.0
Note: See TracChangeset for help on using the changeset viewer.