Changeset 10108 for trunk/src/bp-core/bp-core-cssjs.php
- Timestamp:
- 09/13/2015 02:02:56 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-core/bp-core-cssjs.php
r10012 r10108 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 13 13 * Register scripts commonly used by BuddyPress. 14 14 * 15 * @since BuddyPress (2.1.0)15 * @since 2.1.0 16 16 */ 17 17 function bp_core_register_common_scripts() { … … 22 22 * Filters the BuddyPress Core javascript files to register. 23 23 * 24 * @since BuddyPress (2.1.0)24 * @since 2.1.0 25 25 * 26 26 * @param array $value Array of javascript file information to register. … … 57 57 * Register styles commonly used by BuddyPress. 58 58 * 59 * @since BuddyPress (2.1.0)59 * @since 2.1.0 60 60 */ 61 61 function bp_core_register_common_styles() { … … 66 66 * Filters the URL for the Admin Bar stylesheet. 67 67 * 68 * @since BuddyPress (1.1.0)68 * @since 1.1.0 69 69 * 70 70 * @param string $value URL for the Admin Bar stylesheet. … … 75 75 * Filters the BuddyPress Core stylesheet files to register. 76 76 * 77 * @since BuddyPress (2.1.0)77 * @since 2.1.0 78 78 * 79 79 * @param array $value Array of stylesheet file information to register. … … 123 123 * Enqueues the css and js required by the Avatar UI. 124 124 * 125 * @since BuddyPress (2.3.0)125 * @since 2.3.0 126 126 */ 127 127 function bp_core_avatar_scripts() { … … 158 158 * Filters the return value of getimagesize to determine if an image was uploaded. 159 159 * 160 * @since BuddyPress (1.1.0)160 * @since 1.1.0 161 161 * 162 162 * @param array $value Array of data found by getimagesize. … … 278 278 * Define the 'ajaxurl' JS variable, used by themes as an AJAX endpoint. 279 279 * 280 * @since BuddyPress (1.1.0)280 * @since 1.1.0 281 281 */ 282 282 function bp_core_add_ajax_url_js() { … … 295 295 * configurations. 296 296 * 297 * @since BuddyPress (1.7.0)297 * @since 1.7.0 298 298 * 299 299 * @return string AJAX endpoint URL. … … 304 304 * Filters the proper value for BuddyPress' ajaxurl. 305 305 * 306 * @since BuddyPress (1.7.0)306 * @since 1.7.0 307 307 * 308 308 * @param string $value Proper ajaxurl value for BuddyPress. … … 314 314 * Get the JavaScript dependencies for buddypress.js. 315 315 * 316 * @since BuddyPress (2.0.0)316 * @since 2.0.0 317 317 * 318 318 * @uses apply_filters() to allow other component to load extra dependencies. … … 325 325 * Filters the javascript dependencies for buddypress.js. 326 326 * 327 * @since BuddyPress (2.0.0)327 * @since 2.0.0 328 328 * 329 329 * @param array $value Array of javascript dependencies for buddypress.js.
Note: See TracChangeset
for help on using the changeset viewer.