Make WordPress Core

Changeset 9002


Ignore:
Timestamp:
09/27/2008 10:06:18 AM (15 years ago)
Author:
westi
Message:

phpdoc updates for wp-includes See #7550 props jacobsantos.

Location:
trunk/wp-includes
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-pop3.php

    r8762 r9002  
    2424| - Oursourcing (highly qualified programmers and graphic designers)        |
    2525'---------------------------------------------------------------------------'
     26 */
    2627
    2728/**
     
    4344 * @author Richard Davey
    4445 */
    45 
    4646class POP3
    4747{
  • trunk/wp-includes/class.wp-dependencies.php

    r8600 r9002  
    11<?php
    2 
     2/**
     3 * BackPress Scripts enqueue.
     4 *
     5 * These classes were refactored from the WordPress WP_Scripts and WordPress
     6 * script enqueue API.
     7 *
     8 * @package BackPress
     9 * @since r74
     10 */
     11
     12/**
     13 * BackPress enqueued dependiences class.
     14 *
     15 * @package BackPress
     16 * @uses _WP_Dependency
     17 * @since r74
     18 */
    319class WP_Dependencies {
    420    var $registered = array();
  • trunk/wp-includes/class.wp-scripts.php

    r8301 r9002  
    11<?php
     2/**
     3 * BackPress Scripts enqueue.
     4 *
     5 * These classes were refactored from the WordPress WP_Scripts and WordPress
     6 * script enqueue API.
     7 *
     8 * @package BackPress
     9 * @since r16
     10 */
    211
     12/**
     13 * BackPress Scripts enqueue class.
     14 *
     15 * @package BackPress
     16 * @uses WP_Dependencies
     17 * @since r16
     18 */
    319class WP_Scripts extends WP_Dependencies {
    420    var $base_url; // Full URL with trailing slash
  • trunk/wp-includes/class.wp-styles.php

    r8301 r9002  
    11<?php
     2/**
     3 * BackPress Styles enqueue.
     4 *
     5 * These classes were refactored from the WordPress WP_Scripts and WordPress
     6 * script enqueue API.
     7 *
     8 * @package BackPress
     9 * @since r74
     10 */
    211
     12/**
     13 * BackPress Styles enqueue class.
     14 *
     15 * @package BackPress
     16 * @uses WP_Dependencies
     17 * @since r74
     18 */
    319class WP_Styles extends WP_Dependencies {
    420    var $base_url;
  • trunk/wp-includes/functions.wp-scripts.php

    r7970 r9002  
    11<?php
     2/**
     3 * BackPress script procedural API.
     4 *
     5 * @package BackPress
     6 * @since r16
     7 */
    28
    39/**
    4  * Prints script tags in document head
     10 * Prints script tags in document head.
    511 *
    6  * Called by admin-header.php and by wp_head hook. Since it is called by wp_head on every page load,
    7  * the function does not instantiate the WP_Scripts object unless script names are explicitly passed.
    8  * Does make use of already instantiated $wp_scripts if present.
    9  * Use provided wp_print_scripts hook to register/enqueue new scripts.
     12 * Called by admin-header.php and by wp_head hook. Since it is called by wp_head
     13 * on every page load, the function does not instantiate the WP_Scripts object
     14 * unless script names are explicitly passed. Does make use of already
     15 * instantiated $wp_scripts if present. Use provided wp_print_scripts hook to
     16 * register/enqueue new scripts.
    1017 *
     18 * @since r16
    1119 * @see WP_Scripts::print_scripts()
    1220 */
  • trunk/wp-includes/functions.wp-styles.php

    r8050 r9002  
    11<?php
     2/**
     3 * BackPress styles procedural API.
     4 *
     5 * @package BackPress
     6 * @since r79
     7 */
    28
     9/**
     10 * {@internal Missing Short Description}}
     11 *
     12 * @since r79
     13 *
     14 * @param mixed $handles See {@link WP_Styles::do_items()} for information.
     15 * @return mixed See {@link WP_Styles::do_items()} for information.
     16 */
    317function wp_print_styles( $handles = false ) {
    418    do_action( 'wp_print_styles' );
Note: See TracChangeset for help on using the changeset viewer.