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

    r9819 r10142  
    77 */
    88
    9 // Exit if accessed directly
     9// Exit if accessed directly.
    1010defined( 'ABSPATH' ) || exit;
    1111
     
    1515 * Used if an existing field has an unknown type (e.g. one provided by a missing third-party plugin).
    1616 *
    17  * @since BuddyPress (2.0.1)
     17 * @since 2.0.1
    1818 */
    1919class BP_XProfile_Field_Type_Placeholder extends BP_XProfile_Field_Type {
     
    2222     * Constructor for the placeholder field type.
    2323     *
    24      * @since BuddyPress (2.0.1)
     24     * @since 2.0.1
    2525     */
    2626    public function __construct() {
     
    3232     *
    3333     * @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.
    34      * @since BuddyPress (2.0.1)
     34     * @since 2.0.1
    3535     */
    3636    public function edit_field_html( array $raw_properties = array() ) {
     
    4141     *
    4242     * @param array $raw_properties Optional key/value array of permitted attributes that you want to add.
    43      * @since BuddyPress (2.0.1)
     43     * @since 2.0.1
    4444     */
    4545    public function admin_field_html( array $raw_properties = array() ) {
     
    5151     * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen.
    5252     * @param string $control_type Optional. HTML input type used to render the current field's child options.
    53      * @since BuddyPress (2.0.1)
     53     * @since 2.0.1
    5454     */
    5555    public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {}
Note: See TracChangeset for help on using the changeset viewer.