Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/25/2015 02:19:11 AM (9 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-selectbox.php

    r9819 r10142  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    1313 * Selectbox xprofile field type.
    1414 *
    15  * @since BuddyPress (2.0.0)
     15 * @since 2.0.0
    1616 */
    1717class BP_XProfile_Field_Type_Selectbox extends BP_XProfile_Field_Type {
     
    2020     * Constructor for the selectbox 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_Selectbox class.
    3636         *
    37          * @since BuddyPress (2.0.0)
     37         * @since 2.0.0
    3838         *
    3939         * @param BP_XProfile_Field_Type_Selectbox $this Current instance of
     
    4949     *
    5050     * @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.
    51      * @since BuddyPress (2.0.0)
     51     * @since 2.0.0
    5252     */
    5353    public function edit_field_html( array $raw_properties = array() ) {
     
    9393     *
    9494     * @param array $args Optional. The arguments passed to {@link bp_the_profile_field_options()}.
    95      * @since BuddyPress (2.0.0)
     95     * @since 2.0.0
    9696     */
    9797    public function edit_field_options_html( array $args = array() ) {
     
    136136             * Filters the HTML output for options in a select input.
    137137             *
    138              * @since BuddyPress (1.1.0)
     138             * @since 1.1.0
    139139             *
    140140             * @param string $value    Option tag for current value being rendered.
     
    156156     *
    157157     * @param array $raw_properties Optional key/value array of permitted attributes that you want to add.
    158      * @since BuddyPress (2.0.0)
     158     * @since 2.0.0
    159159     */
    160160    public function admin_field_html( array $raw_properties = array() ) {
     
    175175     * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
    176176     * @param string $control_type Optional. HTML input type used to render the current field's child options.
    177      * @since BuddyPress (2.0.0)
     177     * @since 2.0.0
    178178     */
    179179    public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {
Note: See TracChangeset for help on using the changeset viewer.