function tripal_bulk_loader_theme

2.x tripal_bulk_loader.module tripal_bulk_loader_theme($existing, $type, $theme, $path)
3.x tripal_bulk_loader.module tripal_bulk_loader_theme($existing, $type, $theme, $path)
1.x tripal_bulk_loader.module tripal_bulk_loader_theme()

Implements hook_theme

Related topics

File

tripal_bulk_loader/tripal_bulk_loader.module, line 174
The functions for the Tripal bulk loader.

Code

function tripal_bulk_loader_theme() {
  return array(
    'tripal_bulk_loader_set_constants_form' => array(
      'arguments' => array('form' => NULL),
    ),
    'tripal_bulk_loader_template' => array(
      'arguments' => array('template_id' => NULL),
      'template' => 'tripal_bulk_loader_template'
    ),
    'tripal_bulk_loader_modify_template_base_form' => array(
      'arguments' => array('form' => NULL),
      'template' => 'tripal_bulk_loader_modify_template_base_form',
    ),
    'tripal_bulk_loader_edit_template_field_form' => array(
      'arguments' => array('form' => NULL),
      'template' => 'tripal_bulk_loader_edit_template_field_form',
    ),
    'tripal_bulk_loader_add_template_field_form' => array(
      'arguments' => array('form' => NULL),
      'template' => 'tripal_bulk_loader_add_template_field_form',
    ),
    'tripal_bulk_loader_admin' => array(
      'template' => 'tripal_bulk_loader_admin',
      'arguments' => array(NULL),
      'path' => drupal_get_path('module', 'tripal_bulk_loader') . '/theme'
    ),
  );
}