You are here

function node_accessibility_theme in Node Accessibility 7

Implements hook_theme().

File

./node_accessibility.module, line 158
Module file for the node accessibility project.

Code

function node_accessibility_theme($existing, $type, $theme, $path) {
  $themes = array();
  $themes['node_accessibility_information'] = array(
    'template' => 'node_accessibility_information',
    'variables' => array(
      'node' => NULL,
    ),
    'path' => drupal_get_path('module', 'node_accessibility') . '/includes',
  );
  return $themes;
}