123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400 |
- <?php
- require_once 'api/tripal_core.chado_nodes.api.inc';
- require_once 'api/tripal_core.chado_nodes.title_and_path.inc';
- require_once 'api/tripal_core.chado_nodes.properties.api.inc';
- require_once 'api/tripal_core.chado_nodes.dbxrefs.api.inc';
- require_once 'api/tripal_core.chado_nodes.relationships.api.inc';
- require_once 'api/tripal_core.tripal_variables.api.inc';
- require_once 'includes/tripal_core.form_elements.inc';
- require_once 'includes/tripal_core.search.inc';
- function tripal_core_init() {
-
-
-
-
-
-
- module_load_include('inc', 'node', 'node.pages');
- }
- function tripal_core_menu() {
- $items = array();
-
- $items['admin/tripal/legacy'] = array(
- 'title' => 'Tripal Legacy',
- 'description' => t("Legacy functionality from Tripal v2.0."),
- 'weight' => -8,
- 'page callback' => 'system_admin_menu_block_page',
- 'access arguments' => array('administer tripal'),
- 'file' => 'system.admin.inc',
- 'file path' => drupal_get_path('module', 'system'),
- );
-
- $items['tripal_ajax/relationship_nodeform/%/%/name_to_id'] = array(
- 'page callback' => 'chado_add_node_form_relationships_name_to_id_callback',
- 'page arguments' => array(2,3),
- 'access arguments' => array('access content'),
- 'type' => MENU_CALLBACK
- );
-
- $items['node/%node/tripal_toc'] = array(
- 'title' => 'TOC',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('tripal_core_node_toc_form', 1),
- 'access callback' => 'tripal_core_access_node_toc_form',
- 'access arguments' => array(1),
- 'type' => MENU_LOCAL_TASK,
- 'file' => '/includes/tripal_core.toc.inc',
- );
- return $items;
- }
- function tripal_core_access_node_toc_form($node) {
- $types = module_invoke_all('node_info');
- if (array_key_exists($node->type, $types) and
- array_key_exists('chado_node_api', $types[$node->type])) {
- return user_access('administer tripal');
- }
- return FALSE;
- }
- function tripal_core_permission() {
- return array();
- }
- function tripal_core_theme($existing, $type, $theme, $path) {
- return array(
- 'tripal_core_customize' => array(
- 'arguments' => array('job_id' => NULL),
- 'template' => 'tripal_core_customize',
- 'path' => "$path/theme/templates"
- ),
- 'theme_file_upload_combo' => array(
- 'render element' => 'element',
- ),
- 'theme_sequence_combo' => array(
- 'render element' => 'element',
- ),
- 'tripal_core_jobs_help' => array(
- 'template' => 'tripal_core_jobs_help',
- 'variables' => array(NULL),
- 'path' => "$path/theme/templates"
- ),
- 'tripal_core_customtables_help' => array(
- 'template' => 'tripal_core_customtables_help',
- 'variables' => array(NULL),
- 'path' => "$path/theme/templates"
- ),
-
-
-
- 'chado_node_properties_form_table' => array(
- 'function' => 'theme_chado_add_node_form_properties',
- 'render element' => 'element',
- ),
-
- 'chado_node_additional_dbxrefs_form_table' => array(
- 'function' => 'theme_chado_add_node_form_dbxrefs_table',
- 'render element' => 'element',
- ),
-
- 'chado_node_relationships_form_table' => array(
- 'function' => 'theme_chado_add_node_form_relationships_table',
- 'render element' => 'element',
- ),
-
-
- 'tripal_node_toc_items_table' => array(
- 'render element' => 'element',
- ),
-
- 'tripal_core_extensions_form_tables' => array(
- 'render element' => 'element',
- ),
- 'administer controlled vocabularies' => array(
- 'title' => t('Administer controlled vocabularies (CVs).'),
- 'description' => t('Allow a user to add, edit and delete controlled vocabularies as well as add and edit terms.')
- ),
- );
- }
- function tripal_core_coder_ignore() {
- return array(
- 'path' => drupal_get_path('module', 'tripal_core'),
- 'line prefix' => drupal_get_path('module', 'tripal_core'),
- );
- }
- function tripal_core_views_api() {
- return array(
- 'api' => 3.0,
- );
- }
- function tripal_core_node_view_alter(&$build) {
- module_load_include('inc', 'tripal_core', 'includes/tripal_core.toc');
- tripal_core_node_view_build_toc($build);
- }
- function tripal_core_node_view($node, $view_mode, $langcode) {
-
-
-
- if (preg_match('/^chado_/', $node->type)) {
- if ($view_mode == 'full') {
- if (!isset($node->content['#tripal_generic_node_template'])) {
- $node->content['#tripal_generic_node_template'] = TRUE;
- }
- }
- }
- }
- function tripal_core_field_widget_form_alter(&$element, &$form_state, $context) {
-
-
- if (isset($element['#field_name']) AND $element['#field_name'] == 'field_resource_links') {
-
- $num_elements = count($context['items']);
- if ($num_elements == $element['#delta']) {
- $bundle = $element['#bundle'];
- $base_table = preg_replace('/^chado_(.*)$/', '\1', $bundle);
- $tokens = chado_node_generate_tokens($base_table);
- $token_list = chado_node_format_tokens($tokens);
- $element['tokens'] = array(
- '#type' => 'fieldset',
- '#title' => 'Available tokens',
- '#collapsible' => TRUE,
- '#collapsed' => TRUE,
- '#weight' => 100
- );
- $element['tokens']['tokens_table'] = array(
- '#type' => 'item',
- '#markup' => $token_list
- );
- }
- }
- }
- function tripal_core_block_info() {
- $blocks['tripal_search'] = array(
- 'info' => t('Tripal Search Block'),
- 'cache' => DRUPAL_NO_CACHE,
- );
- return $blocks;
- }
- function tripal_core_block_view($delta = '') {
- $block = array();
- switch ($delta) {
- case 'tripal_search':
- $block['title'] = 'Search';
- $form_render_arr = drupal_get_form('tripal_core_search_block');
- $block['content'] = array(
- '#markup' => drupal_render($form_render_arr),
- );
- break;
- }
- return $block;
- }
- function tripal_core_search_block($form, $form_state) {
- $form['wrapper'] = array(
- '#prefix' => '<div id="search-block-form" class="container-inline">',
- '#suffix' => '</div>',
- );
- $form['wrapper']['title'] = array(
- '#markup' => '<h2 class="element-invisible">Search form</h2>',
- );
- $form['wrapper']['search_block_form'] = array(
- '#title' => 'Search',
- '#title_display' => 'invisible',
- '#type' => 'textfield',
- '#size' => 15,
- '#maxlength' => 128,
- '#attributes' =>array('placeholder' => t(variable_get('tripal_search_placeholder', 'Keywords')))
- );
- $form['wrapper']['submit'] = array(
- '#type' => 'submit',
- '#value' => 'Search',
- '#prefix' => '<div class="form-actions form-wrapper" id="edit-actions">',
- '#suffix' => '</div>'
- );
- $form['search_placeholder'] = array(
- '#type' => 'textfield',
- '#title' => 'Placeholder Text',
- '#description' => 'Change the text that shows up within the search box until the user enters any of their own text.',
- '#default_value' => variable_get('tripal_search_placeholder', 'Keywords'),
- );
- return $form;
- }
- function tripal_core_search_block_submit($form, &$form_state) {
- $form_state['redirect'] = array(
- variable_get('tripal_search_block_url', 'search/data'),
- array(
- 'query' => array(
- 'keywords' => $form_state['values']['search_block_form']
- ),
- ),
- );
- }
- function tripal_core_block_configure ($delta = '') {
- $form = array();
- $form['search_url'] = array(
- '#type' => 'textfield',
- '#title' => 'Search Page URL',
- '#description' => 'The URL for the page you would like to redirect to when the user
- clicks "Search". It is expected that this page will be a view with an exposed
- filter having a "Filter Identifier" (in "More" fieldset on the edit filter form)
- of "keywords".',
- '#default_value' => variable_get('tripal_search_block_url', 'search/data'),
- );
- return $form;
- }
- function tripal_core_block_save($delta = '', $edit = array()) {
-
- if (!empty($edit['search_url'])) {
- variable_set('tripal_search_block_url', $edit['search_url']);
- }
- if (!empty($edit['search_placeholder'])) {
- variable_set('tripal_search_placeholder', $edit['search_placeholder']);
- }
- }
|