diff --git a/app/Config/Schema/db_acl.php b/app/Config/Schema/db_acl.php index 495055bf3..91d93e084 100644 --- a/app/Config/Schema/db_acl.php +++ b/app/Config/Schema/db_acl.php @@ -33,6 +33,9 @@ class DbAclSchema extends CakeSchema { public function after($event = array()) { } +/** + * ACO - Access Control Object - Something that is wanted + */ public $acos = array( 'id' => array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary'), 'parent_id' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), @@ -44,6 +47,9 @@ class DbAclSchema extends CakeSchema { 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)) ); +/** + * ARO - Access Request Object - Something that wants something + */ public $aros = array( 'id' => array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary'), 'parent_id' => array('type' => 'integer', 'null' => true, 'default' => null, 'length' => 10), @@ -55,6 +61,10 @@ class DbAclSchema extends CakeSchema { 'indexes' => array('PRIMARY' => array('column' => 'id', 'unique' => 1)) ); +/** + * Used by the Cake::Model:Permission class. + * Checks if the given $aro has access to action $action in $aco. + */ public $aros_acos = array( 'id' => array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10, 'key' => 'primary'), 'aro_id' => array('type' => 'integer', 'null' => false, 'length' => 10, 'key' => 'index'), diff --git a/app/Config/core.php b/app/Config/core.php index d1f53a2eb..c6c1284d2 100644 --- a/app/Config/core.php +++ b/app/Config/core.php @@ -275,7 +275,7 @@ * then the value of `Config.timezone` will be used. This feature allows you to set users' timezone just * once instead of passing it each time in function calls. */ - //Configure::write('Config.timezone', 'Europe/Paris') + //Configure::write('Config.timezone', 'Europe/Paris'); /** * diff --git a/build.xml b/build.xml index 82ee704d7..42ed084bd 100644 --- a/build.xml +++ b/build.xml @@ -29,7 +29,9 @@ - + + +