You are here

function views_export_xls_permission in Views Excel Export 7

Implements hook_permission().

File

./views_export_xls.module, line 10
Gives the ability to export to excel

Code

function views_export_xls_permission() {
  return array(
    'xls export views' => array(
      'title' => t('Export views to xls'),
      'description' => t('Access to export feature of views to xls.'),
    ),
  );
}