tripal_views_search.module 589 B

12345678910111213141516171819
  1. <?php
  2. require_once 'includes/tripal_views_search.admin.inc';
  3. function tripal_views_search_menu(){
  4. $items = array();
  5. $items['admin/settings/tripal_views_search'] = array(
  6. 'title' => t('Tripal Views Search settings'),
  7. 'description' => t('Tripal Views Search settings page, allows you to select which materialized views and chado tables to use for searches.'),
  8. 'page callback' => 'drupal_get_form',
  9. 'page arguments' => array('tripal_views_search_admin'),
  10. 'access arguments' => array('access administration pages'),
  11. 'type' => MENU_NORMAL_ITEM,
  12. );
  13. return $items;
  14. }