[ Index ] |
PHP Cross Reference of BuddyPress |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * Interface for objects that have email address properties (address, name). 4 * 5 * @since 5.0.0 6 */ 7 8 interface BP_Email_Address { 9 /** 10 * Gets the email address of the user. 11 * 12 * @since 5.0.0 13 */ 14 public function get_address(); 15 16 /** 17 * Gets the display name of the user. 18 * 19 * @since 5.0.0 20 */ 21 public function get_name(); 22 23 /** 24 * Sets the email address of the user. 25 * 26 * @since 5.0.0 27 * 28 * @param string $email_address Email address. 29 */ 30 public function set_address( $email_address ); 31 32 /** 33 * Sets the name of the user. 34 * 35 * @since 5.0.0 36 * 37 * @param string $name Name. 38 */ 39 public function set_name( $name ); 40 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Sun Nov 24 01:00:53 2024 | Cross-referenced by PHPXref 0.7.1 |