Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
09/25/2015 12:18:18 AM (9 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-checkbox.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 * Checkbox xprofile field type.
    1414 *
    15  * @since BuddyPress (2.0.0)
     15 * @since 2.0.0
    1616 */
    1717class BP_XProfile_Field_Type_Checkbox extends BP_XProfile_Field_Type {
     
    2020     * Constructor for the checkbox 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_Checkbox class.
    3838         *
    39          * @since BuddyPress (2.0.0)
     39         * @since 2.0.0
    4040         *
    4141         * @param BP_XProfile_Field_Type_Checkbox $this Current instance of
     
    5151     *
    5252     * @param array $raw_properties Optional key/value array of {@link http://dev.w3.org/html5/markup/input.checkbox.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() ) {
     
    9898     *
    9999     * @param array $args Optional. The arguments passed to {@link bp_the_profile_field_options()}.
    100      * @since BuddyPress (2.0.0)
     100     * @since 2.0.0
    101101     */
    102102    public function edit_field_options_html( array $args = array() ) {
     
    148148             * Filters the HTML output for an individual field options checkbox.
    149149             *
    150              * @since BuddyPress (1.1.0)
     150             * @since 1.1.0
    151151             *
    152152             * @param string $new_html Label and checkbox input field.
     
    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() ) {
     
    181181     * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
    182182     * @param string $control_type Optional. HTML input type used to render the current field's child options.
    183      * @since BuddyPress (2.0.0)
     183     * @since 2.0.0
    184184     */
    185185    public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {
Note: See TracChangeset for help on using the changeset viewer.