- Timestamp:
- 09/25/2015 02:19:11 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bp-xprofile/classes/class-bp-xprofile-field-type-placeholder.php
r9819 r10142 7 7 */ 8 8 9 // Exit if accessed directly 9 // Exit if accessed directly. 10 10 defined( 'ABSPATH' ) || exit; 11 11 … … 15 15 * Used if an existing field has an unknown type (e.g. one provided by a missing third-party plugin). 16 16 * 17 * @since BuddyPress (2.0.1)17 * @since 2.0.1 18 18 */ 19 19 class BP_XProfile_Field_Type_Placeholder extends BP_XProfile_Field_Type { … … 22 22 * Constructor for the placeholder field type. 23 23 * 24 * @since BuddyPress (2.0.1)24 * @since 2.0.1 25 25 */ 26 26 public function __construct() { … … 32 32 * 33 33 * @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 35 35 */ 36 36 public function edit_field_html( array $raw_properties = array() ) { … … 41 41 * 42 42 * @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 44 44 */ 45 45 public function admin_field_html( array $raw_properties = array() ) { … … 51 51 * @param BP_XProfile_Field $current_field The current profile field on the add/edit screen. 52 52 * @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 54 54 */ 55 55 public function admin_new_field_html( BP_XProfile_Field $current_field, $control_type = '' ) {}
Note: See TracChangeset
for help on using the changeset viewer.