function hosting_package_permission in Hosting 7.4
Same name and namespace in other branches
- 7.3 package/hosting_package.module \hosting_package_permission()
Implements hook_permission().
File
- package/
hosting_package.module, line 45 - Defines package node types
Code
function hosting_package_permission() {
return array(
'create package' => array(
'title' => t('create package'),
),
'view package' => array(
'title' => t('view package'),
),
'edit package' => array(
'title' => t('edit package'),
),
'delete package' => array(
'title' => t('delete package'),
),
);
}