Added user overview

feature/node-rewrite
Sven Slootweg 13 years ago
parent df4fe46ca8
commit 5ceb711b64

@ -31,6 +31,12 @@ class User extends CPHPDatabaseRecordClass
)
);
public $prototype_export = array(
'Username',
'EmailAddress',
'AccessLevel'
);
public function GenerateSalt()
{
$this->uSalt = random_string(10);

@ -81,14 +81,14 @@ table.vpsinfo th
width: 150px;
}
table.vpslist tr:hover
table.console th
{
background-color: #BABAD0;
width: 120px;
}
table.console th
table.userlist td
{
width: 120px;
padding-bottom: 4px;
}
.clickable a
@ -97,6 +97,11 @@ table.console th
text-decoration: none;
}
tr.clickable:hover
{
background-color: #BABAD0;
}
.clear
{
clear: both;

@ -28,7 +28,8 @@ try
$router->routes = array(
0 => array(
'^/admin/?$' => "module.admin.overview.php"
'^/admin/?$' => "module.admin.overview.php",
'^/admin/users/?$' => "module.admin.users.php"
)
);

Loading…
Cancel
Save