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

    r9819 r10142  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    1313 * URL xprofile field type.
    1414 *
    15  * @since BuddyPress (2.1.0)
     15 * @since 2.1.0
    1616 */
    1717class BP_XProfile_Field_Type_URL extends BP_XProfile_Field_Type {
     
    2020     * Constructor for the URL field type
    2121     *
    22      * @since BuddyPress (2.1.0)
     22     * @since 2.1.0
    2323     */
    2424    public function __construct() {
     
    3333         * Fires inside __construct() method for BP_XProfile_Field_Type_URL class.
    3434         *
    35          * @since BuddyPress (2.0.0)
     35         * @since 2.0.0
    3636         *
    3737         * @param BP_XProfile_Field_Type_URL $this Current instance of
     
    4949     *        {@link http://dev.w3.org/html5/markup/input.number.html permitted attributes}
    5050     *        that you want to add.
    51      * @since BuddyPress (2.1.0)
     51     * @since 2.1.0
    5252     */
    5353    public function edit_field_html( array $raw_properties = array() ) {
     
    8989     * @param array $raw_properties Optional key/value array of permitted
    9090     *        attributes that you want to add.
    91      * @since BuddyPress (2.1.0)
     91     * @since 2.1.0
    9292     */
    9393    public function admin_field_html( array $raw_properties = array() ) {
     
    109109     * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
    110110     * @param string $control_type Optional. HTML input type used to render the current field's child options.
    111      * @since BuddyPress (2.1.0)
     111     * @since 2.1.0
    112112     */
    113113    public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {}
     
    123123     * is_valid().
    124124     *
    125      * @since BuddyPress (2.1.0)
     125     * @since 2.1.0
    126126     *
    127127     * @param string $submitted_value Raw value submitted by the user.
     
    150150     * Format URL values for display.
    151151     *
    152      * @since BuddyPress (2.1.0)
     152     * @since 2.1.0
    153153     *
    154154     * @param string $field_value The URL value, as saved in the database.
Note: See TracChangeset for help on using the changeset viewer.