= t('No user') ?>
= $paginator->order(t('Id'), 'id') ?> | = $paginator->order(t('Username'), 'username') ?> | = $paginator->order(t('Name'), 'name') ?> | = $paginator->order(t('Email'), 'email') ?> | = $paginator->order(t('Administrator'), 'is_admin') ?> | = $paginator->order(t('Two factor authentication'), 'twofactor_activated') ?> | = $paginator->order(t('Notifications'), 'notifications_enabled') ?> | = t('External accounts') ?> | = $paginator->order(t('Account type'), 'is_ldap_user') ?> |
---|---|---|---|---|---|---|---|---|
= $this->url->link('#'.$user['id'], 'user', 'show', array('user_id' => $user['id'])) ?> | = $this->url->link($this->e($user['username']), 'user', 'show', array('user_id' => $user['id'])) ?> | = $this->e($user['name']) ?> | = $this->e($user['email']) ?> | = $user['is_admin'] ? t('Yes') : t('No') ?> | = $user['twofactor_activated'] ? t('Yes') : t('No') ?> | = t('Enabled') ?> = t('Disabled') ?> |
|
= $user['is_ldap_user'] ? t('Remote') : t('Local') ?> |