File path: dist/twist/Core/Controllers/Manager.controller.php
Namespace: Twist\Core\Controllers
Extends: BaseUser
Type: Controller
Manager
— The route controller for the framework manager, generates the pages of the manager tool.
<?php
/** --------- Option 1 --------- */
//Register a dynamic route that will direct all function requests to the controller
Twist::Route() -> controller('/manager%','\Twist\Core\Controllers\Manager');
/** --------- Option 2 --------- */
//Or you can register a route to only direct the current request to a particular controller method
Twist::Route() -> get('/manager/forgottenpassword',array('\Twist\Core\Controllers\Manager','forgottenpassword'));
Method | Access | Returns |
---|---|---|
__construct | construct | void |
login | public | void |
forgottenpassword | public | void |
cookies | public | void |
_index | public | void |
dashboard | public | void |
cache | public | void |
parseCache | protected | void |
htaccess | public | void |
POSThtaccess | public | void |
scanner | public | void |
settings | public | void |
POSTsettings | public | void |
GETupdatesetting | public | void |
packages | public | void |
install | public | void |
uninstall | public | void |