12345678910111213141516171819 |
- <?php
- require_once 'includes/tripal_views_search.admin.inc';
- function tripal_views_search_menu(){
- $items = array();
-
- $items['admin/settings/tripal_views_search'] = array(
- 'title' => t('Tripal Views Search settings'),
- 'description' => t('Tripal Views Search settings page, allows you to select which materialized views and chado tables to use for searches.'),
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_views_search_admin'),
- 'access arguments' => array('access administration pages'),
- 'type' => MENU_NORMAL_ITEM,
- );
-
- return $items;
- }
|