function composed_field_permission in Composed Field 7
Implements hook_permission().
File
- ./
composed_field.module, line 10 - Defines composed field type.
Code
function composed_field_permission() {
return array(
'enter PHP code in widget settings form' => array(
'title' => t('Enter PHP code into the widget settings form'),
'description' => t('Enter PHP code in the widget settings form. %warning', array(
'%warning' => t('Warning: Give to trusted roles only; this permission has security implications.'),
)),
),
);
}