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/includes/classes.php

    r11856 r11899  
    33 * Common Classes
    44 *
    5  * @since 1.0.0
     5 * @since 3.0.0
    66 */
    77
     
    1212 * Builds a group of BP_Button
    1313 *
    14  * @since 1.0.0
     14 * @since 3.0.0
    1515 */
    1616class BP_Buttons_Group {
     
    2626     * Constructor
    2727     *
    28      * @since 1.0.0
     28     * @since 3.0.0
    2929     *
    3030     * @param array $args Optional array having the following parameters {
     
    9393     * Sort the Buttons of the group according to their position attribute
    9494     *
    95      * @since 1.0.0
     95     * @since 3.0.0
    9696     *
    9797     * @param  array the list of buttons to sort.
     
    127127     * Get the BuddyPress buttons for the group
    128128     *
    129      * @since 1.0.0
     129     * @since 3.0.0
    130130     *
    131131     * @param  bool $sort whether to sort the buttons or not.
     
    159159     * Update the group of buttons
    160160     *
    161      * @since 1.0.0
     161     * @since 3.0.0
    162162     *
    163163     * @param array $args See the __constructor for a description of this argument.
     
    181181 * Adds a widget to move avatar/item nav into the sidebar
    182182 *
    183  * @since 1.0
    184  *
    185  * @uses   WP_Widget
     183 * @since 3.0.0
     184 *
     185 * @uses WP_Widget
    186186 */
    187187class BP_Nouveau_Object_Nav_Widget extends WP_Widget {
     
    189189     * Constructor
    190190     *
    191      * @since 1.0
     191     * @since 3.0.0
    192192     */
    193193    public function __construct() {
     
    207207     * Register the widget
    208208     *
    209      * @since 1.0
     209     * @since 3.0.0
    210210     */
    211211    public static function register_widget() {
     
    216216     * Displays the output, the button to post new support topics
    217217     *
    218      * @since 1.0
    219      *
    220      * @param mixed $args Arguments
     218     * @since 3.0.0
     219     *
     220     * @param mixed   $args     Arguments
     221     * @param unknown $instance
    221222     */
    222223    public function widget( $args, $instance ) {
     
    265266     * Update the new support topic widget options (title)
    266267     *
    267      * @since 1.0
     268     * @since 3.0.0
    268269     *
    269270     * @param array $new_instance The new instance options
     
    282283     * Output the new support topic widget options form
    283284     *
    284      * @since 1.0
     285     * @since 3.0.0
    285286     *
    286287     * @param $instance Instance
Note: See TracChangeset for help on using the changeset viewer.