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-datebox.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 * Datebox xprofile field type.
    1414 *
    15  * @since BuddyPress (2.0.0)
     15 * @since 2.0.0
    1616 */
    1717class BP_XProfile_Field_Type_Datebox extends BP_XProfile_Field_Type {
     
    2020     * Constructor for the datebox 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_Datebox class.
    3434         *
    35          * @since BuddyPress (2.0.0)
     35         * @since 2.0.0
    3636         *
    3737         * @param BP_XProfile_Field_Type_Datebox $this Current instance of
     
    4747     *
    4848     * @param array $raw_properties Optional key/value array of {@link http://dev.w3.org/html5/markup/input.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() ) {
     
    8888             * your needed target ID.
    8989             *
    90              * @since BuddyPress (1.8.0)
     90             * @since 1.8.0
    9191             */
    9292            do_action( bp_get_the_profile_field_errors_action() ); ?>
     
    129129     *
    130130     * @param array $args Optional. The arguments passed to {@link bp_the_profile_field_options()}.
    131      * @since BuddyPress (2.0.0)
     131     * @since 2.0.0
    132132     */
    133133    public function edit_field_options_html( array $args = array() ) {
     
    224224         * Filters the output for the profile field datebox.
    225225         *
    226          * @since BuddyPress (1.1.0)
     226         * @since 1.1.0
    227227         *
    228228         * @param string $html  HTML output for the field.
     
    243243     *
    244244     * @param array $raw_properties Optional key/value array of permitted attributes that you want to add.
    245      * @since BuddyPress (2.0.0)
     245     * @since 2.0.0
    246246     */
    247247    public function admin_field_html( array $raw_properties = array() ) {
     
    283283     * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
    284284     * @param string $control_type Optional. HTML input type used to render the current field's child options.
    285      * @since BuddyPress (2.0.0)
     285     * @since 2.0.0
    286286     */
    287287    public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {}
     
    290290     * Format Date values for display.
    291291     *
    292      * @since BuddyPress (2.1.0)
     292     * @since 2.1.0
    293293     *
    294294     * @param string $field_value The date value, as saved in the database.
Note: See TracChangeset for help on using the changeset viewer.