Rename method name
This commit is contained in:
parent
ed422be734
commit
811f075aa1
|
@ -352,7 +352,7 @@ HELP;
|
||||||
case 'active':
|
case 'active':
|
||||||
case 'removed':
|
case 'removed':
|
||||||
$table->setHeaders(['Nick', 'Name', 'URL', 'E-Mail', 'Register', 'Login', 'Last Item']);
|
$table->setHeaders(['Nick', 'Name', 'URL', 'E-Mail', 'Register', 'Login', 'Last Item']);
|
||||||
$contacts = UserModel::getUsers($start, $count, $subCmd);
|
$contacts = UserModel::getList($start, $count, $subCmd);
|
||||||
foreach ($contacts as $contact) {
|
foreach ($contacts as $contact) {
|
||||||
$table->addRow([
|
$table->addRow([
|
||||||
$contact['nick'],
|
$contact['nick'],
|
||||||
|
|
|
@ -1330,7 +1330,7 @@ class User
|
||||||
* @return array The list of the users
|
* @return array The list of the users
|
||||||
* @throws Exception
|
* @throws Exception
|
||||||
*/
|
*/
|
||||||
public static function getUsers($start = 0, $count = Pager::ITEMS_PER_PAGE, $type = 'all', $order = 'contact.name', $order_direction = '+')
|
public static function getList($start = 0, $count = Pager::ITEMS_PER_PAGE, $type = 'all', $order = 'contact.name', $order_direction = '+')
|
||||||
{
|
{
|
||||||
$sql_order = '`' . str_replace('.', '`.`', $order) . '`';
|
$sql_order = '`' . str_replace('.', '`.`', $order) . '`';
|
||||||
$sql_order_direction = ($order_direction === '+') ? 'ASC' : 'DESC';
|
$sql_order_direction = ($order_direction === '+') ? 'ASC' : 'DESC';
|
||||||
|
|
|
@ -179,7 +179,7 @@ class Users extends BaseAdmin
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$users = User::getUsers($pager->getStart(), $pager->getItemsPerPage(), 'all', $order, $order_direction);
|
$users = User::getList($pager->getStart(), $pager->getItemsPerPage(), 'all', $order, $order_direction);
|
||||||
|
|
||||||
$adminlist = explode(',', str_replace(' ', '', DI::config()->get('config', 'admin_email')));
|
$adminlist = explode(',', str_replace(' ', '', DI::config()->get('config', 'admin_email')));
|
||||||
$_setup_users = function ($e) use ($adminlist) {
|
$_setup_users = function ($e) use ($adminlist) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user