class-activation.php
1 year ago
class-admin-menu-organizer.php
1 year ago
class-auto-publish-posts-with-missed-schedule.php
1 year ago
class-avif-upload.php
1 year ago
class-captcha-protection.php
1 year ago
class-change-login-url.php
1 year ago
class-cleanup-admin-bar.php
1 year ago
class-common-methods.php
1 year ago
class-content-duplication.php
1 year ago
class-content-order.php
1 year ago
class-custom-admin-footer-text.php
1 year ago
class-custom-body-class.php
1 year ago
class-custom-css.php
1 year ago
class-custom-nav-menu-items-in-new-tab.php
1 year ago
class-deactivation.php
1 year ago
class-disable-comments.php
1 year ago
class-disable-dashboard-widgets.php
1 year ago
class-disable-feeds.php
1 year ago
class-disable-gutenberg.php
1 year ago
class-disable-rest-api.php
1 year ago
class-disable-smaller-components.php
1 year ago
class-disable-updates.php
1 year ago
class-disable-xml-rpc.php
1 year ago
class-display-system-summary.php
1 year ago
class-email-address-obfuscator.php
1 year ago
class-email-delivery.php
1 year ago
class-enhance-list-tables.php
1 year ago
class-external-permalinks.php
1 year ago
class-heartbeat-control.php
1 year ago
class-hide-admin-bar.php
1 year ago
class-hide-admin-notices.php
1 year ago
class-image-sizes-panel.php
1 year ago
class-image-upload-control.php
1 year ago
class-insert-head-body-footer-code.php
1 year ago
class-last-login-column.php
1 year ago
class-limit-login-attempts.php
1 year ago
class-login-id-type.php
1 year ago
class-login-logout-menu.php
1 year ago
class-maintenance-mode.php
1 year ago
class-manage-ads-appads-txt.php
1 year ago
class-manage-robots-txt.php
1 year ago
class-media-replacement.php
1 year ago
class-multiple-user-roles.php
1 year ago
class-obfuscate-author-slugs.php
1 year ago
class-open-external-links-in-new-tab.php
1 year ago
class-password-protection.php
1 year ago
class-redirect-after-login.php
1 year ago
class-redirect-after-logout.php
1 year ago
class-redirect-fourofour.php
1 year ago
class-registration-date-column.php
1 year ago
class-revisions-control.php
1 year ago
class-search-engines-visibility.php
1 year ago
class-settings-fields-render.php
1 year ago
class-settings-sanitization.php
1 year ago
class-settings-sections-fields.php
1 year ago
class-show-custom-taxonomy-filters.php
1 year ago
class-site-identity-on-login-page.php
1 year ago
class-svg-upload.php
1 year ago
class-various-admin-ui-enhancements.php
1 year ago
class-view-admin-as-role.php
1 year ago
class-wider-admin-menu.php
1 year ago
class-wp-config-transformer.php
1 year ago
class-registration-date-column.php
42 lines
| 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 |