function jeditable_permission in jEditable inline content editing 7
Implements hook_permission().
File
- ./
jeditable.module, line 60 - jeditable.module TODO: Provides integration between Drupal and the jEditable jquery plugin @todo: Datepicker support @todo: Ajax upload support @todo: Radioboxes/checkboxes support @todo: add required handler for date @todo: add compatibility for…
Code
function jeditable_permission() {
return array(
'use jeditable' => array(
'title' => t('Use jEditable'),
'description' => t('Use jEditable to edit fields in place.'),
),
);
}