function hosting_clone_permission in Hosting 7.3
Same name and namespace in other branches
- 7.4 clone/hosting_clone.module \hosting_clone_permission()
Implements hook_permission().
File
- clone/
hosting_clone.module, line 25 - Allow sites to be cloned.
Code
function hosting_clone_permission() {
return array(
'create clone task' => array(
'title' => t('create clone task'),
),
);
}