class-registration-date-column.php
| 1 | <?php |
| 2 | |
| 3 | namespace ASENHA\Classes; |
| 4 | |
| 5 | /** |
| 6 | * Class for Last Login Column module |
| 7 | * |
| 8 | * @since 7.6.0 |
| 9 | */ |
| 10 | class Registration_Date_Column { |
| 11 | /** |
| 12 | * Add registration date column |
| 13 | * |
| 14 | * @since 7.6.0 |
| 15 | */ |
| 16 | public function add_registration_date_column( $columns ) { |
| 17 | $columns['asenha_registered'] = __( 'Registered', 'admin-site-enhancements' ); |
| 18 | return $columns; |
| 19 | } |
| 20 | |
| 21 | /** |
| 22 | * Display registration date for each user |
| 23 | * |
| 24 | * @since 7.6.0 |
| 25 | */ |
| 26 | public function display_registration_date( $output, $column_name, $user_id ) { |
| 27 | $user = get_userdata( $user_id ); |
| 28 | $user_registered_unix = strtotime( $user->user_registered ); |
| 29 | if ( 'asenha_registered' === $column_name ) { |
| 30 | $date_format = ( !empty( get_option( 'date_format' ) ) ? get_option( 'date_format' ) : 'F j, Y' ); |
| 31 | $time_format = ( !empty( get_option( 'time_format' ) ) ? get_option( 'time_format' ) : 'g:i a' ); |
| 32 | if ( function_exists( 'wp_date' ) ) { |
| 33 | $output = wp_date( $date_format . ' ' . $time_format, $user_registered_unix ); |
| 34 | } else { |
| 35 | $output = date_i18n( $date_format . ' ' . $time_format, $user_registered_unix ); |
| 36 | } |
| 37 | } |
| 38 | return $output; |
| 39 | } |
| 40 | |
| 41 | } |
| 42 |