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-textbox.php

    r9819 r10142  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    1313 * Textbox xprofile field type.
    1414 *
    15  * @since BuddyPress (2.0.0)
     15 * @since 2.0.0
    1616 */
    1717class BP_XProfile_Field_Type_Textbox extends BP_XProfile_Field_Type {
     
    2020     * Constructor for the textbox field type
    2121     *
    22      * @since BuddyPress (2.0.0)
     22     * @since 2.0.0
    2323     */
    2424    public function __construct() {
     
    3333         * Fires inside __construct() method for BP_XProfile_Field_Type_Textbox class.
    3434         *
    35          * @since BuddyPress (2.0.0)
     35         * @since 2.0.0
    3636         *
    3737         * @param BP_XProfile_Field_Type_Textbox $this Current instance of
     
    4747     *
    4848     * @param array $raw_properties Optional key/value array of {@link http://dev.w3.org/html5/markup/input.text.html permitted attributes} that you want to add.
    49      * @since BuddyPress (2.0.0)
     49     * @since 2.0.0
    5050     */
    5151    public function edit_field_html( array $raw_properties = array() ) {
     
    8585     *
    8686     * @param array $raw_properties Optional key/value array of permitted attributes that you want to add.
    87      * @since BuddyPress (2.0.0)
     87     * @since 2.0.0
    8888     */
    8989    public function admin_field_html( array $raw_properties = array() ) {
     
    104104     * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
    105105     * @param string $control_type Optional. HTML input type used to render the current field's child options.
    106      * @since BuddyPress (2.0.0)
     106     * @since 2.0.0
    107107     */
    108108    public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {}
Note: See TracChangeset for help on using the changeset viewer.