function tripal_views_theme
2.x tripal_views.module | tripal_views_theme( |
1.x tripal_views.module | tripal_views_theme() |
Implements hook_theme().
This hook provides details about themable objects added by this module
Related topics
File
- tripal_views/
tripal_views.module, line 218 - Basic Tripal Views functionality
Code
function tripal_views_theme($existing, $type, $theme, $path) {
return array(
'tripal_views_integration_form' => array(
'template' => 'tripal_views_integration_fields_form',
'render element' => 'form',
),
'file_upload_combo' => array(
'variables' => array('element' => NULL)
),
'sequence_combo' => array(
'variables' => array('element' => NULL)
),
// instructions page for the views module
'tripal_views_help' => array(
'template' => 'tripal_views_help',
'variables' => array(NULL),
'path' => drupal_get_path('module', 'tripal_views') . '/theme'
),
// search biological content page
'tripal_views_search_biological_content' => array(
'template' => 'tripal_views_search_biological_content',
'variables' => array(NULL),
'path' => drupal_get_path('module', 'tripal_views') . '/theme'
),
);
}