You are here

function forena_pdf_permission in Forena Reports 7.5

Same name and namespace in other branches
  1. 7.4 forena_pdf.module \forena_pdf_permission()

Implements hook_permission().

File

./forena_pdf.module, line 157
Forena pdf generation module @author metzlerd

Code

function forena_pdf_permission() {
  return array(
    'use forena pdf document generation service' => array(
      'title' => 'Use PDF Document Generation Service',
      'description' => 'Document generation service may have per document charges associated with it.',
    ),
  );
}