Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/25/2015 02:19:11 AM (11 years ago)
Author:
tw2113
Message:

Finishing off the XProfile class files for @since changes.

See #6576.

File:
1 edited

Legend:

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

    r9819 r10142  
    1313 * Radio button xprofile field type.
    1414 *
    15  * @since BuddyPress (2.0.0)
     15 * @since 2.0.0
    1616 */
    1717class BP_XProfile_Field_Type_Radiobutton extends BP_XProfile_Field_Type {
     
    2020         * Constructor for the radio button field type
    2121         *
    22          * @since BuddyPress (2.0.0)
     22         * @since 2.0.0
    2323         */
    2424        public function __construct() {
     
    3535                 * Fires inside __construct() method for BP_XProfile_Field_Type_Radiobutton class.
    3636                 *
    37                  * @since BuddyPress (2.0.0)
     37                 * @since 2.0.0
    3838                 *
    3939                 * @param BP_XProfile_Field_Type_Radiobutton $this Current instance of
     
    4949         *
    5050         * @param array $raw_properties Optional key/value array of {@link http://dev.w3.org/html5/markup/input.radio.html permitted attributes} that you want to add.
    51          * @since BuddyPress (2.0.0)
     51         * @since 2.0.0
    5252         */
    5353        public function edit_field_html( array $raw_properties = array() ) {
     
    103103         *
    104104         * @param array $args Optional. The arguments passed to {@link bp_the_profile_field_options()}.
    105          * @since BuddyPress (2.0.0)
     105         * @since 2.0.0
    106106         */
    107107        public function edit_field_options_html( array $args = array() ) {
     
    141141                         * Filters the HTML output for an individual field options radio button.
    142142                         *
    143                          * @since BuddyPress (1.1.0)
     143                         * @since 1.1.0
    144144                         *
    145145                         * @param string $new_html Label and radio input field.
     
    161161         *
    162162         * @param array $raw_properties Optional key/value array of permitted attributes that you want to add.
    163          * @since BuddyPress (2.0.0)
     163         * @since 2.0.0
    164164         */
    165165        public function admin_field_html( array $raw_properties = array() ) {
     
    184184         * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
    185185         * @param string $control_type Optional. HTML input type used to render the current field's child options.
    186          * @since BuddyPress (2.0.0)
     186         * @since 2.0.0
    187187         */
    188188        public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {
Note: See TracChangeset for help on using the changeset viewer.