Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/25/2015 12:18:18 AM (10 years ago)
Author:
tw2113
Message:

Standardizing our @since tags for the XProfile component.

See #6576.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-multiselectbox.php

    r9819 r10140  
    11<?php
    22/**
    3  * BuddyPress XProfile Classes
     3 * BuddyPress XProfile Classes.
    44 *
    55 * @package BuddyPress
     
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    1313 * Multi-selectbox xprofile field type.
    1414 *
    15  * @since BuddyPress (2.0.0)
     15 * @since 2.0.0
    1616 */
    1717class BP_XProfile_Field_Type_Multiselectbox extends BP_XProfile_Field_Type {
     
    2020     * Constructor for the multi-selectbox field type
    2121     *
    22      * @since BuddyPress (2.0.0)
     22     * @since 2.0.0
    2323     */
    2424    public function __construct() {
     
    3737         * Fires inside __construct() method for BP_XProfile_Field_Type_Multiselectbox class.
    3838         *
    39          * @since BuddyPress (2.0.0)
     39         * @since 2.0.0
    4040         *
    4141         * @param BP_XProfile_Field_Type_Multiselectbox $this Current instance of
     
    5151     *
    5252     * @param array $raw_properties Optional key/value array of {@link http://dev.w3.org/html5/markup/select.html permitted attributes} that you want to add.
    53      * @since BuddyPress (2.0.0)
     53     * @since 2.0.0
    5454     */
    5555    public function edit_field_html( array $raw_properties = array() ) {
     
    105105     *
    106106     * @param array $args Optional. The arguments passed to {@link bp_the_profile_field_options()}.
    107      * @since BuddyPress (2.0.0)
     107     * @since 2.0.0
    108108     */
    109109    public function edit_field_options_html( array $args = array() ) {
     
    148148             * Filters the HTML output for options in a multiselect input.
    149149             *
    150              * @since BuddyPress (1.5.0)
     150             * @since 1.5.0
    151151             *
    152152             * @param string $value    Option tag for current value being rendered.
     
    168168     *
    169169     * @param array $raw_properties Optional key/value array of permitted attributes that you want to add.
    170      * @since BuddyPress (2.0.0)
     170     * @since 2.0.0
    171171     */
    172172    public function admin_field_html( array $raw_properties = array() ) {
     
    189189     * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
    190190     * @param string $control_type Optional. HTML input type used to render the current field's child options.
    191      * @since BuddyPress (2.0.0)
     191     * @since 2.0.0
    192192     */
    193193    public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {
Note: See TracChangeset for help on using the changeset viewer.