function contextual_permission
Implements hook_permission().
Archivo
- drupal-7.x/
modules/ contextual/ contextual.module, line 29 - Adds contextual links to perform actions related to elements on a page.
Código
function contextual_permission() {
return array(
'access contextual links' => array(
'title' => t('Use contextual links'),
'description' => t('Use contextual links to perform actions related to elements on a page.'),
),
);
}