- Timestamp:
- 09/25/2015 12:18:18 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-datebox.php
r9819 r10140 1 1 <?php 2 2 /** 3 * BuddyPress XProfile Classes 3 * BuddyPress XProfile Classes. 4 4 * 5 5 * @package BuddyPress … … 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 13 13 * Datebox xprofile field type. 14 14 * 15 * @since BuddyPress (2.0.0)15 * @since 2.0.0 16 16 */ 17 17 class BP_XProfile_Field_Type_Datebox extends BP_XProfile_Field_Type { … … 20 20 * Constructor for the datebox field type 21 21 * 22 * @since BuddyPress (2.0.0)22 * @since 2.0.0 23 23 */ 24 24 public function __construct() { … … 33 33 * Fires inside __construct() method for BP_XProfile_Field_Type_Datebox class. 34 34 * 35 * @since BuddyPress (2.0.0)35 * @since 2.0.0 36 36 * 37 37 * @param BP_XProfile_Field_Type_Datebox $this Current instance of … … 47 47 * 48 48 * @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 50 50 */ 51 51 public function edit_field_html( array $raw_properties = array() ) { … … 88 88 * your needed target ID. 89 89 * 90 * @since BuddyPress (1.8.0)90 * @since 1.8.0 91 91 */ 92 92 do_action( bp_get_the_profile_field_errors_action() ); ?> … … 129 129 * 130 130 * @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 132 132 */ 133 133 public function edit_field_options_html( array $args = array() ) { … … 224 224 * Filters the output for the profile field datebox. 225 225 * 226 * @since BuddyPress (1.1.0)226 * @since 1.1.0 227 227 * 228 228 * @param string $html HTML output for the field. … … 243 243 * 244 244 * @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 246 246 */ 247 247 public function admin_field_html( array $raw_properties = array() ) { … … 283 283 * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen. 284 284 * @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 286 286 */ 287 287 public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {} … … 290 290 * Format Date values for display. 291 291 * 292 * @since BuddyPress (2.1.0)292 * @since 2.1.0 293 293 * 294 294 * @param string $field_value The date value, as saved in the database.
Note: See TracChangeset
for help on using the changeset viewer.