You are here

function hook_pdf_export_processor_info in PDF Export 7

Define libraries processors.

An array indexed by the library machine name containing: name: Human readable name of the library. class: Process adapter name. file: Relative path to the processor file without extension.

1 function implements hook_pdf_export_processor_info()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

pdf_export_mpdf_pdf_export_processor_info in pdf_export_mpdf/pdf_export_mpdf.module
Implements hook_pdf_export_processor_info().
1 invocation of hook_pdf_export_processor_info()
pdf_export_admin_form in ./pdf_export.admin.inc
PDF Export admin form definition.

File

./pdf_export.api.php, line 33
Documentation for PDF Export.

Code

function hook_pdf_export_processor_info() {
  return array(
    'library_key' => array(
      'name' => 'My Library',
      'class' => 'PdfExportMyLibraryProcessor',
      'file' => 'includes/PdfExportMyLibraryProcessor',
    ),
  );
}