You are here

function uc_csv_permission in Ubercart CSV 7.2

Implements hook_perm

File

./uc_csv.module, line 88

Code

function uc_csv_permission() {
  return array(
    'administer ubercart csv export settings' => array(
      'title' => 'Administer CSV Export Settings',
    ),
    'export ubercart reports as csv files' => array(
      'title' => 'Allow report exports as CSV files',
    ),
  );
}