function tablefield_permission in TableField 7.2
Same name and namespace in other branches
- 7.3 tablefield.module \tablefield_permission()
Implements hook_permission().
File
- ./
tablefield.module, line 64 - Provides a set of fields that can be used to store tabular data with a node.
Code
function tablefield_permission() {
return array(
'export tablefield' => array(
'title' => t('Export Tablefield Data as CSV'),
),
'rebuild tablefield' => array(
'title' => t('Rebuild any tablefield'),
),
'configure tablefield' => array(
'title' => t('Allow changes in the global tablefield module configuration'),
),
);
}