BP_Members_MS_List_Table::column_date_sent( object|null $signup_object = null )
Display the last time an activation email has been sent.
Description
Parameters
- $signup_object
-
(Optional) Signup object instance.
Default value: null
Source
File: bp-members/classes/class-bp-members-ms-list-table.php
380 381 382 383 384 385 386 387 388 389 390 | public function column_date_sent( $signup_object = null ) { global $mode ; if ( 'list' === $mode ) { $date = 'Y/m/d' ; } else { $date = 'Y/m/d \<\b\r \/\> g:i:s a' ; } echo mysql2date( $date , $signup_object ->date_sent ); } |
Changelog
Version | Description |
---|---|
BuddyPress 2.0.0 | Introduced. |
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.