Added private module functionality.

This commit is contained in:
Josh Sherman 2010-12-09 22:52:26 -05:00
parent a72f49f2b4
commit 8fa5471aa7
2 changed files with 17 additions and 0 deletions

View file

@ -69,6 +69,16 @@ class Module extends Object
*/
protected $secure = null;
/**
* Private
*
* Whether or not the page can be accessed directly.
*
* @access protected
* @var boolean, false by default
*/
protected $private = false;
/**
* Security settings of the page
*