initial commit
This commit is contained in:
35
application/controller/AdminController.php
Normal file
35
application/controller/AdminController.php
Normal file
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
class AdminController extends Controller
|
||||
{
|
||||
/**
|
||||
* Construct this object by extending the basic Controller class
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
|
||||
// special authentication check for the entire controller: Note the check-ADMIN-authentication!
|
||||
// All methods inside this controller are only accessible for admins (= users that have role type 7)
|
||||
Auth::checkAdminAuthentication();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method controls what happens when you move to /admin or /admin/index in your app.
|
||||
*/
|
||||
public function index()
|
||||
{
|
||||
$this->View->render('admin/index', array(
|
||||
'users' => UserModel::getPublicProfilesOfAllUsers())
|
||||
);
|
||||
}
|
||||
|
||||
public function actionAccountSettings()
|
||||
{
|
||||
AdminModel::setAccountSuspensionAndDeletionStatus(
|
||||
Request::post('suspension'), Request::post('softDelete'), Request::post('user_id')
|
||||
);
|
||||
|
||||
Redirect::to("admin");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user