Page MenuHomeDevCentral

Controller.php
No OneTemporary

Controller.php

<?php
/**
* _, __, _, _ __, _ _, _, _
* / \ |_) (_ | | \ | /_\ |\ |
* \ / |_) , ) | |_/ | | | | \|
* ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
*
* Controller class
*
* @package ObsidianWorkspaces
* @subpackage Controller
* @author Sébastien Santoro aka Dereckson <dereckson@espace-win.org>
* @license http://www.opensource.org/licenses/bsd-license.php BSD
* @filesource
*/
/**
* Controller class
*
* This class describes a controller
*/
abstract class Controller implements RunnableWithContext {
/**
* @var string the application name
*/
public static $name;
/**
* @var Context the site context
*/
public $context;
/**
* Initializes the controller resources
*/
public function initialize () { }
/**
* Handles a web request
*/
public abstract function handleRequest();
public static function load (Context $context) {
$controller = new static;
$controller->context = $context;
$controller->initialize();
return $controller;
}
/**
* Initializes a new instance of the controller with the specified context and handle request
*/
public static function run (Context $context) {
static::load($context)->handleRequest();
}
}

File Metadata

Mime Type
text/x-php
Expires
Wed, Apr 2, 18:24 (12 h, 42 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2535039
Default Alt Text
Controller.php (1 KB)

Event Timeline