Changeset 9002
- Timestamp:
- 09/27/2008 10:06:18 AM (15 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-pop3.php
r8762 r9002 24 24 | - Oursourcing (highly qualified programmers and graphic designers) | 25 25 '---------------------------------------------------------------------------' 26 */ 26 27 27 28 /** … … 43 44 * @author Richard Davey 44 45 */ 45 46 46 class POP3 47 47 { -
trunk/wp-includes/class.wp-dependencies.php
r8600 r9002 1 1 <?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 */ 3 19 class WP_Dependencies { 4 20 var $registered = array(); -
trunk/wp-includes/class.wp-scripts.php
r8301 r9002 1 1 <?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 */ 2 11 12 /** 13 * BackPress Scripts enqueue class. 14 * 15 * @package BackPress 16 * @uses WP_Dependencies 17 * @since r16 18 */ 3 19 class WP_Scripts extends WP_Dependencies { 4 20 var $base_url; // Full URL with trailing slash -
trunk/wp-includes/class.wp-styles.php
r8301 r9002 1 1 <?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 */ 2 11 12 /** 13 * BackPress Styles enqueue class. 14 * 15 * @package BackPress 16 * @uses WP_Dependencies 17 * @since r74 18 */ 3 19 class WP_Styles extends WP_Dependencies { 4 20 var $base_url; -
trunk/wp-includes/functions.wp-scripts.php
r7970 r9002 1 1 <?php 2 /** 3 * BackPress script procedural API. 4 * 5 * @package BackPress 6 * @since r16 7 */ 2 8 3 9 /** 4 * Prints script tags in document head 10 * Prints script tags in document head. 5 11 * 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. 10 17 * 18 * @since r16 11 19 * @see WP_Scripts::print_scripts() 12 20 */ -
trunk/wp-includes/functions.wp-styles.php
r8050 r9002 1 1 <?php 2 /** 3 * BackPress styles procedural API. 4 * 5 * @package BackPress 6 * @since r79 7 */ 2 8 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 */ 3 17 function wp_print_styles( $handles = false ) { 4 18 do_action( 'wp_print_styles' );
Note: See TracChangeset
for help on using the changeset viewer.