More initial work

This commit is contained in:
Deon George
2014-09-01 23:01:01 +10:00
parent febaad9ea6
commit 2115c70db0
14 changed files with 570 additions and 6 deletions

View File

@@ -0,0 +1,28 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* Request. Uses the [Route] class to determine what
* [Controller] to send the request to.
*
* @package Membership Database
* @category Modifications
* @author Deon George
* @copyright (c) 2014 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Request extends lnApp_Request {
/**
* Get our Module_Method object for this request
*/
public function mmo() {
static $result = FALSE;
if (is_null($result) OR $result)
return $result;
$result = NULL;
return ($result = ORM::factory('Module_Method')->request_mmo($this));
}
}
?>