Added optional security hash check.

This commit is contained in:
Josh Sherman 2010-11-26 02:43:41 -05:00
parent 2b57cb6a5d
commit 212843386d
2 changed files with 49 additions and 2 deletions

View file

@ -97,6 +97,18 @@ class Module extends Object
*/
protected $method = null;
/**
* Hash
*
* Whether or not to validate the security hash. Boolean true will indicate
* using the name of the module as the hash, a string value will use the
* value instead.
*
* @access protected
* @var string or boolean, null by default
*/
protected $hash = null;
/**
* Default display engine
*