Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
03/18/2018 09:56:44 PM (8 years ago)
Author:
djpaul
Message:

Templates, Nouveau: fix @since PHPDoc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-templates/bp-nouveau/buddypress-functions.php

    r11855 r11899  
    33 * Functions of BuddyPress's "Nouveau" template pack.
    44 *
    5  * @since 1.0.0
     5 * @since 3.0.0
    66 *
    77 * @buddypress-template-pack {
     
    3030 * See @link BP_Theme_Compat() for more.
    3131 *
    32  * @since 1.0.0
     32 * @since 3.0.0
    3333 */
    3434class BP_Nouveau extends BP_Theme_Compat {
     
    4343     * Return the instance of this class.
    4444     *
    45      * @since 1.0.0
     45     * @since 3.0.0
    4646     */
    4747    public static function get_instance() {
     
    5858     * The BP Nouveau constructor.
    5959     *
    60      * @since 1.0.0
     60     * @since 3.0.0
    6161     */
    6262    public function __construct() {
     
    7373     * BP Nouveau global variables.
    7474     *
    75      * @since 1.0.0
     75     * @since 3.0.0
    7676     */
    7777    protected function setup_globals() {
     
    9191     * Includes!
    9292     *
    93      * @since 1.0.0
     93     * @since 3.0.0
    9494     */
    9595    protected function includes() {
     
    133133     * Setup the Template Pack features support.
    134134     *
    135      * @since 1.0.0
     135     * @since 3.0.0
    136136     */
    137137    protected function setup_support() {
     
    163163     * Setup the Template Pack common actions.
    164164     *
    165      * @since 1.0.0
     165     * @since 3.0.0
    166166     */
    167167    protected function setup_actions() {
     
    210210         * Fires after all of the BuddyPress theme compat actions have been added.
    211211         *
    212          * @since 1.0.0
     212         * @since 3.0.0
    213213         *
    214214         * @param BP_Nouveau $this Current BP_Nouveau instance.
     
    220220     * Enqueue the template pack css files
    221221     *
    222      * @since 1.0.0
     222     * @since 3.0.0
    223223     */
    224224    public function enqueue_styles() {
     
    276276     * Register Template Pack JavaScript files
    277277     *
    278      * @since 1.0.0
     278     * @since 3.0.0
    279279     */
    280280    public function register_scripts() {
     
    339339     * Enqueue the required JavaScript files
    340340     *
    341      * @since 1.0.0
     341     * @since 3.0.0
    342342     */
    343343    public function enqueue_scripts() {
     
    364364     * The no-js class is removed by the JavaScript created in buddypress.js.
    365365     *
    366      * @since 1.0.0
     366     * @since 3.0.0
    367367     *
    368368     * @param array $classes Array of classes to append to body tag.
     
    379379     * These localizations require information that may not be loaded even by init.
    380380     *
    381      * @since 1.0.0
     381     * @since 3.0.0
    382382     */
    383383    public function localize_scripts() {
     
    462462         * Filters core JavaScript strings for internationalization before AJAX usage.
    463463         *
    464          * @since 1.0.0
     464         * @since 3.0.0
    465465         *
    466466         * @param array $value Array of key/value pairs for AJAX usage.
     
    475475     * @see https://buddypress.trac.wordpress.org/ticket/6065
    476476     *
    477      * @since 1.0.0
     477     * @since 3.0.0
    478478     *
    479479     * @param  array $templates Array of templates.
     
    545545     * Add our special 'buddypress' div wrapper to the theme compat template part.
    546546     *
    547      * @since 1.0.0
     547     * @since 3.0.0
    548548     *
    549549     * @see bp_buffer_template_part()
     
    569569     * Define the directory nav items
    570570     *
    571      * @since 1.0.0
     571     * @since 3.0.0
    572572     */
    573573    public function setup_directory_nav() {
     
    601601     * We'll handle template notices from BP Nouveau.
    602602     *
    603      * @since 1.0.0
     603     * @since 3.0.0
    604604     */
    605605    public function neutralize_core_template_notices() {
     
    610610     * Set the BP Uri for the customizer in case of Ajax requests.
    611611     *
    612      * @since 1.0.0
     612     * @since 3.0.0
    613613     *
    614614     * @param  string $path the BP Uri.
     
    639639 * Get a unique instance of BP Nouveau
    640640 *
    641  * @since 1.0.0
     641 * @since 3.0.0
    642642 *
    643643 * @return BP_Nouveau the main instance of the class
Note: See TracChangeset for help on using the changeset viewer.