function socialfield_permission in Social field 7
Implements hook_permission().
File
- ./
socialfield.module, line 45 - Provides a field for adding social services links.
Code
function socialfield_permission() {
return array(
'view services' => array(
'title' => t('View services'),
),
'create new service' => array(
'title' => t('Create new service'),
),
'edit any service' => array(
'title' => t('Edit any service'),
),
'delete any service' => array(
'title' => t('Delete any service'),
),
);
}