Implemented secure variable in the module, removed request variable and will potentially add it back in at a later time.

This commit is contained in:
Josh Sherman 2010-11-25 01:52:00 -05:00
parent 985deaf18a
commit 14f0efbea0
2 changed files with 12 additions and 15 deletions

View file

@ -66,7 +66,6 @@ class Module extends Object
*
* @access protected
* @var boolean, null by default
* @todo Implement this functionality
*/
protected $secure = null;
@ -123,20 +122,6 @@ class Module extends Object
*/
protected $template = 'index';
/**
* Request Data
*
* Modules should not interact with $_REQUEST, $_POST or $_GET directly as
* the contents could be unsafe. The Controller cleanses this data and sets
* it into this variable for safe access by the module.
*
* @access protected
* @var array, null by default
* @todo Currently the super globals are not being cleared out
* @todo Not even sure I want to implement this at this point
*/
protected $request = null;
/**
* Constructor
*