Skip to:
Content

bbPress.org


Ignore:
Timestamp:
01/17/2011 06:57:34 PM (15 years ago)
Author:
johnjamesjacoby
Message:

Normalize bbp-includes directory. Mostly documentation fixes. Introduce bbp-shortcodes placeholder.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/plugin/bbp-includes/bbp-loader.php

    r2789 r2812  
    22
    33/**
    4  * The main bbPress loader.
     4 * bbPress Loader Actions
    55 *
    66 * @package bbPress
     
    99
    1010/** Main Actions **************************************************************/
     11
     12/**
     13 * Main action responsible for constants, globals, and includes
     14 *
     15 * @since bbPress (r2599)
     16 *
     17 * @uses do_action() Calls 'bbp_loaded'
     18 */
     19function bbp_loaded() {
     20    do_action( 'bbp_loaded' );
     21}
    1122
    1223/**
     
    5263function bbp_setup_globals() {
    5364    do_action( 'bbp_setup_globals' );
    54 }
    55 
    56 /**
    57  * Main action responsible for constants, globals, and includes
    58  *
    59  * @since bbPress (r2599)
    60  *
    61  * @uses do_action() Calls 'bbp_loaded'
    62  */
    63 function bbp_loaded() {
    64     do_action( 'bbp_loaded' );
    6565}
    6666
Note: See TracChangeset for help on using the changeset viewer.