public function ForumAccessTestCase1::getInfo in Forum Access 6
Implements getInfo().
Change the grants to your wishes
1 call to ForumAccessTestCase1::getInfo()
- ForumAccessTestCase1::testForumAccess in ./
forum_access.test - Implements the Forum Access testing.
File
- ./
forum_access.test, line 1451 - Test file for forum_access.module.
Class
Code
public function getInfo() {
$grants = array(
'anonymous_view' => TRUE,
'anonymous_create' => TRUE,
'anonymous_update' => TRUE,
'anonymous_delete' => TRUE,
'authenticated_view' => TRUE,
'authenticated_create' => TRUE,
'authenticated_update' => TRUE,
'authenticated_delete' => TRUE,
);
$grants_string = implode(', ', array_keys(array_filter($grants, create_function('$grant', 'return $grant;'))));
if (empty($grants_string)) {
$grants_string = t('none');
}
return array(
'name' => t('Forum access functionality #1'),
'description' => t('Test forum access with the following grants: @grants_string', array(
'@grants_string' => $grants_string,
)),
'group' => t('Forum access'),
);
}