You are here

function pdf_export_theme in PDF Export 7

Implements hook_theme().

File

./pdf_export.module, line 70
PDF Export module.

Code

function pdf_export_theme($existing, $type, $theme, $path) {
  return array(
    'pdf_export_button' => array(
      'variables' => array(
        'attributes' => NULL,
        'label' => NULL,
        'css_selector' => NULL,
        'file_name' => NULL,
        'theme_name' => NULL,
        'css_paths' => NULL,
      ),
      'file' => 'pdf_export.theme.inc',
    ),
  );
}