function a11y_permission in Accessibility toolkit 7
Implements hook_permission().
File
- ./
a11y.module, line 9 - A11y accessibiliy toolkit module to help people.
Code
function a11y_permission() {
return array(
'view a11y simulations' => array(
'title' => t('View A11y simulations'),
'description' => t('User can see the different simulators that the a11y module provides. These are intended to help people understand different accessibility concerns and should not be enabled for general site users unless the intention is teaching about the different conditions.'),
),
);
}