protected function BookAccessVars::getDefaults in Book access 6.2
Implements Vars::getDefaults().
File
- ./
book_access.module, line 661 - Allows to set the access control for book nodes on a per book basis. It is based on forum_access.module and tac_lite.module.
Class
- BookAccessVars
- Allows to access the Drupal variables used by the module.
Code
protected function getDefaults() {
return array(
'book_access_default_authors_access' => array(
'value' => array(),
),
'book_access_default_roles_access' => array(
'value' => array(),
),
'book_access_default_users_access' => array(
'value' => array(),
),
);
}