TwistPHP Documentation

Scheduler

File path: dist/packages/manager/Controllers/Scheduler.controller.php
Namespace: Packages\manager\Controllers
Extends: Base

Type: Controller

Scheduler — The route controller for the framework manager, generates the pages of the manager tool.

Example Usage

<?php
/** --------- Option 1 --------- */

//Register a dynamic route that will direct all function requests to the controller
Twist::Route() -> controller('/scheduler%','\Packages\manager\Controllers\Scheduler');

/** --------- Option 2 --------- */

//Or you can register a route to only direct the current request to a particular controller method
Twist::Route() -> get('/scheduler/_index',array('\Packages\manager\Controllers\Scheduler','_index'));

Method List

Method Access Returns
_indexpublicvoid
POST_indexpublicvoid