function views_ajax_get_permission in Views Ajax Get 7
Implements hook_permission().
File
- ./
views_ajax_get.module, line 59 - Allows Views ajax to work with GET instead of POST.
Code
function views_ajax_get_permission() {
return array(
'administer views ajax get' => array(
'title' => t('Administer views ajax get'),
'description' => t('Access the views get administration pages.'),
'restrict access' => TRUE,
),
);
}