function tripal_natural_diversity_theme
2.x tripal_natural_diversity.module | tripal_natural_diversity_theme($existing, $type, $theme, $path) |
3.x tripal_natural_diversity.module | tripal_natural_diversity_theme( |
1.x tripal_natural_diversity.module | tripal_natural_diversity_theme() |
Implements hook_theme
Related topics
File
- tripal_natural_diversity/
tripal_natural_diversity.module, line 37 - This file contains the basic functions needed for this drupal module. The drupal tripal_natural_diversity module maps directly to the chado X module.
Code
function tripal_natural_diversity_theme() {
return array(
'tripal_feature_nd_genotypes' => array(
'arguments' => array('node' => NULL),
'template' => 'tripal_feature_nd_genotypes',
),
'tripal_stock_nd_genotypes' => array(
'arguments' => array('node' => NULL),
'template' => 'tripal_stock_nd_genotypes',
),
'tripal_stock_nd_phenotypes' => array(
'arguments' => array('node' => NULL),
'template' => 'tripal_stock_nd_phenotypes',
),
);
}