function modalframe_example_permission in Modal Frame API 7
Implementation of hook_perm().
File
- modules/
modalframe_example/ modalframe_example.module, line 11 - Example for the Modal Frame module.
Code
function modalframe_example_permission() {
$permissions = array(
'access modalframe examples' => array(
'title' => t('access modalframe examples'),
'description' => t('Collection of examples using modalframe.'),
),
);
return $permissions;
}