You are here

function views_oai_pmh_theme in Views OAI-PMH 7.3

Same name and namespace in other branches
  1. 6.2 views_oai_pmh.module \views_oai_pmh_theme()
  2. 6 views_oai_pmh.module \views_oai_pmh_theme()
  3. 7 views_oai_pmh.module \views_oai_pmh_theme()
  4. 7.2 views_oai_pmh.module \views_oai_pmh_theme()

Implements hook_theme().

File

./views_oai_pmh.module, line 23
The Views OAI-PMH module.

Code

function views_oai_pmh_theme() {
  return array(
    'views_oai_pmh_response' => array(
      'variables' => array(
        'view' => NULL,
        'options' => NULL,
        'request' => NULL,
        'xml' => NULL,
        'xml_root' => NULL,
        'xml_verb' => NULL,
      ),
      'file' => 'views_oai_pmh.theme.inc',
    ),
    'views_oai_pmh_field_mappings_form' => array(
      'render element' => 'form',
      'file' => 'views_oai_pmh.theme.inc',
    ),
  );
}