function js_test_permission in JS Callback Handler 7
Implements hook_permission().
File
- tests/
js_test.module, line 56 - JavaScript callback handler tests.
Code
function js_test_permission() {
return array(
'js test permission' => array(
'title' => t('JS Test permission'),
'description' => t('Permission to test the access functionality for the js callback handler module.'),
),
);
}