123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276 |
- <?php
- require_once 'api/tripal_library.DEPRECATED.inc';
- require_once 'theme/tripal_library.theme.inc';
- require_once 'includes/tripal_library.admin.inc';
- require_once 'includes/tripal_library.chado_node.inc';
- function tripal_library_permission() {
- return array(
- 'access chado_library content' => array(
- 'title' => t('View Libraries'),
- 'description' => t('Allow users to view library pages.'),
- ),
- 'create chado_library content' => array(
- 'title' => t('Create Libraries'),
- 'description' => t('Allow users to create new library pages.'),
- ),
- 'delete chado_library content' => array(
- 'title' => t('Delete Libraries'),
- 'description' => t('Allow users to delete library pages.'),
- ),
- 'edit chado_library content' => array(
- 'title' => t('Edit Libraries'),
- 'description' => t('Allow users to edit library pages.'),
- ),
- 'administer tripal library' => array(
- 'title' => t('Administer Libraries'),
- 'description' => t('Allow users to administer all libraries.'),
- ),
- );
- }
- function tripal_library_menu() {
- $items = array();
-
- $items['admin/tripal/chado/tripal_library'] = array(
- 'title' => 'Libraries',
- 'description' => 'Any biological library. Examples of genomic libraries include BAC, cDNA, FOSMID, etc.',
- 'page callback' => 'tripal_library_admin_libraries_listing',
- 'access arguments' => array('administer tripal library'),
- 'type' => MENU_NORMAL_ITEM,
- );
- $items['admin/tripal/chado/tripal_library/help'] = array(
- 'title' => 'Help',
- 'description' => 'Basic Description of Tripal Library Module Functionality',
- 'page callback' => 'theme',
- 'page arguments' => array('tripal_library_help'),
- 'access arguments' => array('administer tripal library'),
- 'type' => MENU_LOCAL_TASK,
- 'weight' => 10
- );
- $items['admin/tripal/chado/tripal_library/configuration'] = array(
- 'title' => 'Settings',
- 'description' => 'Configure the Tripal Library module',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_library_admin'),
- 'access arguments' => array('administer tripal library'),
- 'type' => MENU_LOCAL_TASK,
- 'weight' => 5
- );
- $items['admin/tripal/chado/tripal_library/sync'] = array(
- 'title' => ' Sync',
- 'description' => 'Create pages on this site for libraries stored in Chado',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('chado_node_sync_form', 'tripal_library', 'chado_library'),
- 'access arguments' => array('administer tripal library'),
- 'type' => MENU_LOCAL_TASK,
- 'weight' => 2
- );
-
- $items['admin/tripal/chado/tripal_library/chado_library_toc'] = array(
- 'title' => ' TOC',
- 'description' => 'Manage the table of contents for library nodes.',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_core_content_type_toc_form', 'chado_library'),
- 'access arguments' => array('administer tripal library'),
- 'type' => MENU_LOCAL_TASK,
- 'file' => 'includes/tripal_core.toc.inc',
- 'file path' => drupal_get_path('module', 'tripal_core'),
- 'weight' => 3
- );
- $items['admin/tripal/chado/tripal_library/views/libraries/enable'] = array(
- 'title' => 'Enable Library Administrative View',
- 'page callback' => 'tripal_enable_view',
- 'page arguments' => array('tripal_library_admin_libraries', 'admin/tripal/chado/tripal_library'),
- 'access arguments' => array('administer tripal library'),
- 'type' => MENU_CALLBACK,
- );
- return $items;
- }
- function tripal_library_search_biological_data_views() {
- return array(
- 'tripal_library_user_library' => array(
- 'machine_name' => 'tripal_library_user_library',
- 'human_name' => 'Libraries',
- 'description' => 'Biological library including BAC, cDNA, FOSMID, etc.',
- 'link' => 'chado/library'
- ),
- );
- }
- function tripal_library_views_api() {
- return array(
- 'api' => 3.0,
- );
- }
- function tripal_library_theme($existing, $type, $theme, $path) {
- $core_path = drupal_get_path('module', 'tripal_core');
- $items = array(
- 'node__chado_library' => array(
- 'template' => 'node--chado-generic',
- 'render element' => 'node',
- 'base hook' => 'node',
- 'path' => "$core_path/theme/templates",
- ),
-
- 'tripal_library_base' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_library_base',
- 'path' => "$path/theme/templates",
- ),
- 'tripal_library_features' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_library_features',
- 'path' => "$path/theme/templates",
- ),
- 'tripal_library_properties' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_library_properties',
- 'path' => "$path/theme/templates",
- ),
- 'tripal_library_publications' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_library_publications',
- 'path' => "$path/theme/templates",
- ),
- 'tripal_library_references' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_library_references',
- 'path' => "$path/theme/templates",
- ),
- 'tripal_library_synonyms' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_library_synonyms',
- 'path' => "$path/theme/templates",
- ),
- 'tripal_library_terms' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_library_terms',
- 'path' => "$path/theme/templates",
- ),
- 'tripal_library_help' => array(
- 'template' => 'tripal_library_help',
- 'variables' => array(NULL),
- 'path' => "$path/theme/templates",
- ),
-
- 'tripal_library_teaser' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_library_teaser',
- 'path' => "$path/theme/templates",
- ),
-
- 'tripal_organism_libraries' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_organism_libraries',
- 'path' => "$path/theme/templates",
- ),
-
- 'tripal_feature_libraries' => array(
- 'variables' => array('node' => NULL),
- 'template' => 'tripal_feature_libraries',
- 'path' => "$path/theme/templates",
- ),
- );
- return $items;
- }
- function tripal_library_help ($path, $arg) {
- if ($path == 'admin/help#tripal_library') {
- return theme('tripal_library_help', array());
- }
- }
- function tripal_library_form_alter(&$form, &$form_state, $form_id) {
- if ($form_id == "chado_library_node_form") {
-
- $form['actions']['preview']['#access'] = FALSE;
-
- unset($form['body']);
- }
- }
|