Use new code style

This commit is contained in:
David Stone
2025-02-07 19:02:33 -07:00
parent 0181024ae1
commit 8433379d90
672 changed files with 37107 additions and 45249 deletions

View File

@ -20,17 +20,16 @@ defined('ABSPATH') || exit;
class Site_Customer_List_Table extends Customer_List_Table {
/**
* Initializes the table.
*
* @since 2.0.0
*/
* Initializes the table.
*
* @since 2.0.0
*/
public function __construct() {
parent::__construct();
$this->current_mode = 'list';
} // end __construct;
}
/**
* Returns the list of columns for this particular List Table.
@ -45,8 +44,7 @@ class Site_Customer_List_Table extends Customer_List_Table {
);
return $columns;
} // end get_columns;
}
/**
* Renders the inside column responsive.
@ -61,42 +59,50 @@ class Site_Customer_List_Table extends Customer_List_Table {
$last_login = sprintf(__('Last login %s', 'wp-ultimo'), wu_human_time_diff(strtotime((string) $item->get_last_login())));
if ($item->is_online()) {
$last_login = '<span class="wu-inline-block wu-mr-1 wu-rounded-full wu-h-2 wu-w-2 wu-bg-green-500"></span>' . __('Online', 'wp-ultimo');
}
} // end if;
echo wu_responsive_table_row(array(
'id' => $item->get_id(),
'title' => $item->get_display_name(),
'url' => wu_network_admin_url('wp-ultimo-edit-customer', array(
'id' => $item->get_id(),
)),
'image' => get_avatar($item->get_user_id(), 36, 'identicon', '', array(
'force_display' => true,
'class' => 'wu-rounded-full',
)),
'status' => $this->column_status($item),
), array(
'total' => array(
'icon' => 'dashicons-wu-at-sign wu-align-middle wu-mr-1',
'label' => __('Email Address', 'wp-ultimo'),
'value' => $item->get_email_address(),
echo wu_responsive_table_row(
array(
'id' => $item->get_id(),
'title' => $item->get_display_name(),
'url' => wu_network_admin_url(
'wp-ultimo-edit-customer',
array(
'id' => $item->get_id(),
)
),
'image' => get_avatar(
$item->get_user_id(),
36,
'identicon',
'',
array(
'force_display' => true,
'class' => 'wu-rounded-full',
)
),
'status' => $this->column_status($item),
),
),
array(
'date_expiration' => array(
'icon' => $item->is_online() === false ? 'dashicons-wu-calendar1 wu-align-middle wu-mr-1' : '',
'label' => __('Last Login', 'wp-ultimo'),
'value' => $last_login,
array(
'total' => array(
'icon' => 'dashicons-wu-at-sign wu-align-middle wu-mr-1',
'label' => __('Email Address', 'wp-ultimo'),
'value' => $item->get_email_address(),
),
),
'date_created' => array(
'icon' => 'dashicons-wu-calendar1 wu-align-middle wu-mr-1',
'label' => '',
'value' => sprintf(__('Registered %s', 'wp-ultimo'), wu_human_time_diff(strtotime((string) $item->get_date_registered()))),
),
));
} // end column_responsive;
} // end class Site_Customer_List_Table;
array(
'date_expiration' => array(
'icon' => $item->is_online() === false ? 'dashicons-wu-calendar1 wu-align-middle wu-mr-1' : '',
'label' => __('Last Login', 'wp-ultimo'),
'value' => $last_login,
),
'date_created' => array(
'icon' => 'dashicons-wu-calendar1 wu-align-middle wu-mr-1',
'label' => '',
'value' => sprintf(__('Registered %s', 'wp-ultimo'), wu_human_time_diff(strtotime((string) $item->get_date_registered()))),
),
)
);
}
}