LLMS_Admin_Users_Table::get_login_column_date_format()
Retrieve the date/time format used to display a user’s last login.
Return Return
(string)
Source Source
File: includes/admin/class-llms-admin-users-table.php
protected function get_login_column_date_format() { if ( ! $this->login_date_format ) { $this->login_date_format = get_option( 'date_format', 'Y-m-d' ) . ' ' . get_option( 'time_format', ' h:i:s a' ); } return $this->login_date_format; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.0.0 | Introduced. |