2.0, ); } /** * Implements hook_theme * * @ingroup tripal_natural_diversity */ 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', ), 'tripal_stock_nd_locations' => array( 'arguments' => array('node' => NULL), 'template' => 'tripal_stock_nd_locations', ), ); } /** * Implements hook_nodeapi(). * * @ingroup tripal_natural_diversity */ function tripal_natural_diversity_nodeapi(&$node, $op, $teaser, $page){ switch ($op) { case 'view': if ($node->type == 'chado_feature') { // the tripal_genetic module provides a tripal_feature_genotype // template. The only difference between them is the addition of // project information by this module's template. Therefore, // if the tripal_genetic content is present get rid of as this // module superceeds it. if (array_key_exists('tripal_feature_genotypes', $node->content)) { unset($node->content['tripal_feature_genotypes']); } $node->content['tripal_feature_nd_genotypes'] = array( '#value' => theme('tripal_feature_nd_genotypes', $node), ); } if ($node->type == 'chado_stock') { $node->content['tripal_stock_nd_genotypes'] = array( '#value' => theme('tripal_stock_nd_genotypes', $node), ); $node->content['tripal_stock_nd_phenotypes'] = array( '#value' => theme('tripal_stock_nd_phenotypes', $node), ); $node->content['tripal_stock_nd_locations'] = array( '#value' => theme('tripal_stock_nd_locations', $node), ); } break; } } /** * * * @ingroup tripal_natural_diversity */ function tripal_natural_diversity_preprocess_tripal_stock_nd_genotypes(&$variables){ }