function tripal_views_theme
2.x tripal_views.module | tripal_views_theme( |
1.x tripal_views.module | tripal_views_theme() |
Implements hook_theme()
Purpose: this hook provides details about themable objects added by this module
File
- tripal_views/
tripal_views.module, line 159
Code
function tripal_views_theme() {
return array(
'tripal_views_integration_form' => array(
'arguments' => array('form' => NULL),
'template' => 'tripal_views_integration_fields_form',
),
'tripal_views_data_export_download_form' => array(
'arguments' => array('form' => NULL),
'template' => 'tripal_views_data_export_download_form',
),
'file_upload_combo' => array(
'arguments' => array('element' => NULL)
),
'sequence_combo' => array(
'arguments' => array('element' => NULL)
),
// instructions page for the pub module
'tripal_views_admin' => array(
'template' => 'tripal_views_admin',
'arguments' => array(NULL),
'path' => drupal_get_path('module', 'tripal_views') . '/theme'
),
);
}