function footable_permission in FooTable 7.2
Implements hook_permission().
File
- ./
footable.module, line 14 - Provides Views integration for the jQuery FooTable plugin.
Code
function footable_permission() {
return array(
'administer footable' => array(
'title' => t('Administer FooTable'),
),
);
}