123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666 |
- <?php
- /**
- * Include all necessary files.
- */
- include_once __DIR__ . '/templates/system/page.vars.php';
- /**
- * Implements hook_menu_alter().
- *
- * @param $items
- */
- function hardwood_menu_alter(&$items) {
- if (isset($items['user/%/galaxy-jobs'])) {
- $items['user/%/galaxy-jobs']['title'] = t('My Galaxy Workflows');
- }
- if (isset($items['user/%/data-collections'])) {
- $items['user/%/data-collections']['title'] = t('My Data Collections');
- }
- if (isset($items['user/%/files'])) {
- $items['user/%/files']['title'] = t('My Files');
- }
- }
- /**
- * Add `btn` class to all buttons.
- *
- * @param $variables
- */
- function hardwood_preprocess_button(&$variables) {
- $variables['element']['#attributes']['class'][] = 'btn';
- $variables['element']['#attributes']['class'][] = 'mb-2';
- if (is_array($variables['element']['#attributes']['class'])) {
- if (in_array('btn-default',
- $variables['element']['#attributes']['class']) || in_array('btn-danger',
- $variables['element']['#attributes']['class']) || in_array('btn-warning',
- $variables['element']['#attributes']['class']) || in_array('btn-info',
- $variables['element']['#attributes']['class'])) {
- return;
- }
- }
- // Special styles for Delete/Destructive Buttons.
- if (stristr($variables['element']['#value'], 'Delete') !== FALSE) {
- $variables['element']['#attributes']['class'][] = 'btn-danger';
- }
- else {
- $variables['element']['#attributes']['class'][] = 'btn-primary';
- }
- }
- /**
- * Add class `form-control` to text fields
- *
- * @param $variables
- */
- function hardwood_preprocess_textfield(&$variables) {
- $variables['element']['#attributes']['class'][] = 'form-control';
- }
- /**
- * Add class `form-control` to file fields
- *
- * @param $variables
- */
- function hardwood_preprocess_file(&$variables) {
- $variables['element']['#attributes']['class'][] = 'form-control';
- }
- /**
- * Implements theme_textfield()
- *
- * The only reason we need this is to remove the default
- * `form-text` class that drupal adds to text fields.
- *
- * @param $variables
- *
- * @return string
- */
- function hardwood_textfield($variables) {
- $element = $variables['element'];
- $element['#attributes']['type'] = 'text';
- element_set_attributes($element, [
- 'id',
- 'name',
- 'value',
- 'size',
- 'maxlength',
- ]);
- //_form_set_class($element, array('form-text'));
- $extra = '';
- if ($element['#autocomplete_path'] && !empty($element['#autocomplete_input'])) {
- drupal_add_library('system', 'drupal.autocomplete');
- $element['#attributes']['class'][] = 'form-autocomplete';
- $attributes = [];
- $attributes['type'] = 'hidden';
- $attributes['id'] = $element['#autocomplete_input']['#id'];
- $attributes['value'] = $element['#autocomplete_input']['#url_value'];
- $attributes['disabled'] = 'disabled';
- $attributes['class'][] = 'autocomplete';
- $extra = '<input' . drupal_attributes($attributes) . ' />';
- }
- $output = '<input' . drupal_attributes($element['#attributes']) . ' />';
- return $output . $extra;
- }
- /**
- * Implements theme_textarea()
- *
- * Add .form-control to textarea fields
- *
- * @param $variables
- *
- * @return string
- */
- function hardwood_textarea($variables) {
- $element = $variables['element'];
- element_set_attributes($element, ['id', 'name']);
- _form_set_class($element, ['form-control']);
- $wrapper_attributes = [
- 'class' => ['form-textarea-wrapper'],
- ];
- // Add resizable behavior.
- if (!empty($element['#resizable'])) {
- drupal_add_library('system', 'drupal.textarea');
- $wrapper_attributes['class'][] = 'resizable';
- }
- $output = '<div' . drupal_attributes($wrapper_attributes) . '>';
- $output .= '<textarea' . drupal_attributes($element['#attributes']) . '>' . check_plain($element['#value']) . '</textarea>';
- $output .= '</div>';
- return $output;
- }
- /**
- * Implements theme_password()
- *
- * Add .form-control to password fields
- *
- * @param $variables
- *
- * @return string
- */
- function hardwood_password($variables) {
- $element = $variables['element'];
- $element['#attributes']['type'] = 'password';
- element_set_attributes($element, ['id', 'name', 'size', 'maxlength']);
- _form_set_class($element, ['form-control']);
- return '<input' . drupal_attributes($element['#attributes']) . ' />';
- }
- /**
- * Implements theme_form_search_block_form_alter()
- *
- * Alter the search form.
- *
- * @param $form
- */
- function hardwood_form_search_block_form_alter(&$form) {
- $form['search_block_form']['#attributes']['placeholder'] = "Search...";
- $form['search_block_form']['#field_prefix'] = FALSE;
- $form['search_block_form']['#field_suffix'] = FALSE;
- }
- /**
- * Implements theme_form_element().
- *
- * Apply bootstrap wrappings and classes on all form elements.
- *
- * @param $variables
- *
- * @return string
- */
- function hardwood_form_element($variables) {
- $element = &$variables['element'];
- // This function is invoked as theme wrapper, but the rendered form element
- // may not necessarily have been processed by form_builder().
- //$element['#title_display'] = 'before';
- // Add a class for disabled elements to facilitate cross-browser styling.
- if (!empty($element['#attributes']['disabled'])) {
- $attributes['class'][] = 'disabled';
- }
- // Add element #id for #type 'item'.
- if (isset($element['#markup']) && !empty($element['#id'])) {
- $attributes['id'] = $element ['#id'];
- }
- // Add element's #type and #name as class to aid with JS/CSS selectors.
- $attributes['class'] = ['form-item'];
- if (!empty($element['#type'])) {
- $attributes['class'][] = 'form-type-' . strtr($element['#type'], '_', '-');
- }
- if (!empty($element['#name'])) {
- $attributes['class'][] = 'form-item-' . strtr($element['#name'], [
- ' ' => '-',
- '_' => '-',
- '[' => '-',
- ']' => '',
- ]);
- }
- $output = '<div' . drupal_attributes($attributes) . '>' . "\n";
- // If #title is not set, we don't display any label or required marker.
- if (!isset($element['#title'])) {
- $element['#title_display'] = 'none';
- }
- if (!isset($element['#title_display'])) {
- $element['#title_display'] = 'before';
- }
- $prefix = isset($element['#field_prefix']) ? '<span class="field-prefix">' . $element['#field_prefix'] . '</span>' : '';
- $suffix = isset($element['#field_suffix']) ? '<span class="field-prefix">' . $element['#field_suffix'] . '</span>' : '';
- switch ($element['#title_display']) {
- case 'before':
- case 'invisible':
- $output .= ' ' . theme('form_element_label', $variables);
- if (!empty($element['#description']) && isset($element['#type']) && in_array($element['#type'],
- [
- 'radios',
- 'checkboxes',
- ])) {
- $output .= '<div class="form-text text-muted mb-2">' . $element['#description'] . "</div>\n";
- }
- $output .= ' ' . $prefix . $element['#children'] . $suffix . "\n";
- break;
- case 'after':
- $output .= ' ' . $prefix . $element['#children'] . $suffix;
- $output .= ' ' . theme('form_element_label', $variables) . "\n";
- if (!empty($element['#description']) && isset($element['#type']) && in_array($element['#type'],
- [
- 'radios',
- 'checkboxes',
- ])) {
- $output .= '<div class="form-text text-muted mb-2">' . $element['#description'] . "</div>\n";
- }
- break;
- case 'none':
- case 'attribute':
- // Output no label and no required marker, only the children.
- $output .= ' ' . $prefix . $element['#children'] . $suffix . "\n";
- break;
- }
- if (!empty($element['#description']) && (!isset($element['#type']) || !in_array($element['#type'],
- [
- 'radios',
- 'checkboxes',
- ]))) {
- $output .= '<div class="form-text text-muted">' . $element['#description'] . "</div>\n";
- }
- $output .= "</div>\n";
- return '<div class="form-group">' . $output . '</div>';
- }
- /**
- * Implements theme_button()
- *
- * @param $variables
- *
- * @return string
- */
- function hardwood_button($variables) {
- $element = $variables['element'];
- $element['#attributes']['type'] = 'submit';
- element_set_attributes($element, ['id', 'name', 'value']);
- $element ['#attributes']['class'][] = 'form-' . $element ['#button_type'];
- if (!empty($element['#attributes']['disabled'])) {
- $element['#attributes']['class'][] = 'disabled';
- }
- return '<input' . drupal_attributes($element['#attributes']) . ' />';
- }
- /**
- * Alter status messages to use bootstrap alerts.
- *
- * @param $variables
- *
- * @return string
- */
- function hardwood_status_messages($variables) {
- $display = $variables['display'];
- $output = '';
- $status_heading = [
- 'status' => t('Status message'),
- 'error' => t('Error message'),
- 'warning' => t('Warning message'),
- ];
- foreach (drupal_get_messages($display) as $type => $messages) {
- switch ($type) {
- case "error":
- $cc = 'alert-danger';
- break;
- case "warning":
- $cc = 'alert-warning';
- break;
- case 'status':
- $cc = 'alert-info';
- break;
- default:
- $cc = 'alert-info';
- break;
- }
- $output .= "<div class=\"alert $cc\">\n";
- if (!empty($status_heading[$type])) {
- $output .= '<h2 class="element-invisible">' . $status_heading[$type] . "</h2>\n";
- }
- if (count($messages) > 1) {
- $output .= " <ul>\n";
- foreach ($messages as $message) {
- $output .= ' <li>' . $message . "</li>\n";
- }
- $output .= " </ul>\n";
- }
- else {
- $output .= reset($messages);
- }
- $output .= "</div>\n";
- }
- return $output;
- }
- /**
- * Add the menu menu wrapper.
- *
- * @param $variables
- *
- * @return string
- */
- function hardwood_menu_tree__primary(array &$variables) {
- return '<ul class="navbar-nav ml-lg-auto mr-md-auto mr-lg-0">' . $variables['tree'] . '</ul>';
- }
- /**
- * Add the secondary menu wrapper.
- *
- * @param array $variables
- *
- * @return string
- */
- function hardwood_menu_tree__secondary(array &$variables) {
- return '<ul class="navbar-nav mr-md-auto mr-lg-0">' . $variables['tree'] . '</ul>';
- }
- /**
- * Returns HTML for a menu link and submenu.
- *
- * @param array $variables
- * An associative array containing:
- * - element: Structured array data for a menu link.
- *
- * @return string
- * The constructed HTML.
- *
- * @see theme_menu_link()
- *
- * @ingroup theme_functions
- */
- function hardwood_menu_link__main_menu(array $variables) {
- $element = $variables['element'];
- $sub_menu = '';
- $title = $element['#title'];
- $href = $element['#href'];
- $options = !empty($element['#localized_options']) ? $element['#localized_options'] : [];
- $attributes = !empty($element['#attributes']) ? $element['#attributes'] : [];
- $attributes['class'][] = 'nav-item';
- $options['attributes']['class'][] = 'nav-link';
- if ($element['#below']) {
- // Prevent dropdown functions from being added to management menu so it
- // does not affect the navbar module.
- if (($element['#original_link']['menu_name'] == 'management') && (module_exists('navbar'))) {
- $sub_menu = drupal_render($element['#below']);
- }
- elseif ((!empty($element['#original_link']['depth'])) && ($element['#original_link']['depth'] == 1)) {
- // Add our own wrapper.
- //$element['#below']['#theme_wrappers'] = array('menu_tree__sub_menu');
- $sub_menu = '<div class="dropdown-menu">' . drupal_render($element['#below']) . '</div>';
- // Generate as standard dropdown.
- $attributes['class'][] = 'dropdown';
- $options['html'] = TRUE;
- // Set dropdown trigger element to # to prevent inadvertant page loading
- // when a submenu link is clicked.
- $options['attributes']['class'][] = 'dropdown-toggle';
- $options['attributes']['data-toggle'] = 'dropdown';
- }
- }
- return '<li' . drupal_attributes($attributes) . '>' . l($title, $href,
- $options) . $sub_menu . "</li>\n";
- }
- /**
- * @param array $variables
- *
- * @return string
- * @see \theme_menu_link()
- */
- function hardwood_menu_link__user_menu(array &$variables) {
- return hardwood_menu_link__main_menu($variables);
- }
- /**
- * Generates dropdown menu wrapper.
- *
- * @param array $variables
- *
- * @return string
- */
- function hardwood_menu_tree_link__sub_menu(array &$variables) {
- return '<div class="dropdown-menu">' . $variables['tree'] . '</div>';
- }
- /**
- * Create themeable objects.
- *
- * Implements hook_theme()
- *
- * @param array $existing
- * @param string $type
- * @param string $theme
- * @param string $path
- *
- * @return array
- *
- * @see \hook_theme()
- */
- function hardwood_theme($existing, $type, $theme, $path) {
- return [
- 'survey_modal' => [
- 'template' => 'other/survey_modal',
- 'path' => $path . '/templates',
- ],
- ];
- }
- /**
- * Implements hook_theme_registry_alter().
- *
- * @param $theme_registry
- */
- function hardwood_theme_registry_alter(&$theme_registry) {
- $path = path_to_theme();
- // Tell the theme system to look in the "templates" subdirectory within our theme directory
- // Force tripal_blast to use our blast_report template
- $theme_registry['show_blast_report']['theme paths'] = [0 => $path . '/templates'];
- $theme_registry['show_blast_report']['theme path'] = $path . '/templates';
- $theme_registry['show_blast_report']['path'] = $path . '/templates';
- $theme_registry['show_blast_report']['template'] = 'blast/blast_report';
- $theme_registry['trpdownload_page']['path'] = $path . '/templates';
- $theme_registry['trpdownload_page']['template'] = 'other/generic_download_page';
- $theme_registry['analysis_expression_plot']['path'] = $path . '/templates';
- $theme_registry['analysis_expression_plot']['template'] = 'tripal/tripal_analysis_expression.analysis';
- foreach ($theme_registry as $key => $theme) {
- if (isset($theme['template']) && strpos($theme['template'],
- 'node--chado-generic') !== FALSE) {
- $theme_registry[$key]['path'] = $path . '/templates';
- $theme_registry[$key]['template'] = 'tripal/node--chado-generic';
- }
- }
- }
- /**
- * @param $form
- * @param $form_state
- */
- function hardwood_form_website_search_box_form_alter(&$form, &$form_state) {
- hardwood_form_tripal_elasticsearch_site_wide_search_form_alter($form, $form_state);
- }
- /**
- * Alter the search form to use Bootstrap fields.
- *
- * @param $form
- * @param $form_state
- */
- function hardwood_form_tripal_elasticsearch_site_wide_search_form_alter(&$form, &$form_state) {
- $input_group_classes = "input-group elasticsearch-search-input";
- $height = 38;
- if (drupal_is_front_page()) {
- $input_group_classes .= ' input-group-lg';
- $height = 51;
- }
- $form['container']['#attributes']['class'][] = $input_group_classes;
- $form['container']['search_box']['#theme_wrappers'] = [];
- unset($form['container']['search_box']['#size']);
- $form['container']['search_box']['#attributes']['placeholder'] = 'Site Wide Search';
- $form['container']['search_box']['#attributes']['style'] = "height: {$height}px;";
- $form['container']['submit']['#prefix'] = '<div class="input-group-btn">';
- $form['container']['submit']['#suffix'] = '</div>';
- }
- /**
- * Add `form-control` class to the category <select> element in the contact
- * page.
- *
- * @param $form
- * @param $form_state
- */
- function hardwood_form_contact_site_form_alter(&$form, &$form_state) {
- $form['cid']['#attributes']['class'][] = 'form-control';
- }
- /**
- * Alter or add JS files to pages.
- *
- * @param $javascript
- */
- function hardwood_js_alter(&$javascript) {
- unset($javascript['misc/collapse.js']);
- drupal_add_js(drupal_get_path('theme', 'hardwood') . '/dist/js/collapse.js',
- []);
- }
- /**
- * Implements theme_progress_bar()
- *
- * Changes the progress bar markup to match BS4
- *
- * @param $variables
- *
- * @return string
- */
- function hardwood_progress_bar($variables) {
- $output = "<div class=\"progress\">";
- $output .= "<div class=\"progress-bar\" role=\"progressbar\" style=\"width:{$variables['percent']}%\" aria-valuenow=\"{$variables['percent']}\" aria-valuemin=\"0\" aria-valuemax=\"100\">{$variables['percent']}%</div>";
- $output .= "</div>";
- $output .= '<div class="message">' . $variables['message'] . '</div>';
- return $output;
- }
- function hardwood_form_node_form_alter(&$form, &$form_state, $form_id) {
- if (!isset($form['#node']->nid)) {
- return;
- }
- $form['theme_options'] = [
- '#type' => 'fieldset',
- '#title' => t('Theme Options'),
- '#access' => TRUE,
- '#collapsed' => TRUE,
- '#group' => 'additional_settings',
- '#tree' => TRUE,
- ];
- $form['theme_options']['display_card'] = [
- '#type' => 'checkbox',
- '#title' => t('Display box borders around page content'),
- '#default_value' => FALSE,
- ];
- $nid = $form['#node']->nid;
- $cards = variable_get('hardwood_page_cards');
- if (is_array($cards)) {
- $form['theme_options']['display_card']['#default_value'] = !isset($cards[$nid]);
- }
- $form['#submit'][] = 'hardwood_from_node_submit';
- }
- function hardwood_from_node_submit(&$form, &$form_state) {
- if (!isset($form['#node']->nid)) {
- return;
- }
- $values = $form_state['values'];
- $nid = $form['#node']->nid;
- $cards = variable_get('hardwood_page_cards');
- if (!$values['theme_options']['display_card']) {
- if (is_array($cards)) {
- $cards[$nid] = $nid;
- }
- else {
- $cards[$nid] = [$nid];
- }
- }
- else {
- if (is_array($cards)) {
- if (isset($cards[$nid])) {
- unset($cards[$nid]);
- }
- }
- }
- variable_set('hardwood_page_cards', $cards);
- }
- function hardwood_add_help_variables(&$variables) {
- if (function_exists('hardwoods_help_get_help_menu_items')) {
- $variables['help_items'] = hardwoods_help_get_help_menu_items();
- }
- }
- function hardwood_form_blast_ui_per_blast_program_form_alter(&$form, &$form_state) {
- $query_type = arg(2);//strtolower($form_state['build_info']['args'][0]);
- if (strstr(strtolower($query_type), 'nucleotide') === FALSE) {
- return;
- }
- $form['B']['DB']['#prefix'] = '<div id="blast-dbs-wrapper">';
- $form['B']['DB']['#suffix'] = '</div>';
- $options = $form['B']['DB']['SELECT_DB']['#options'];
- $transcripts = [];
- $scaffolds = [];
- foreach ($options as $node_id => $option) {
- if ($option === 'select a dataset') {
- continue;
- }
- $option = strtolower($option);
- if (strstr($option, 'transcript') !== FALSE || strstr($option, 'unigene') !== FALSE) {
- $transcripts[$node_id] = $option;
- }
- else {
- $scaffolds[$node_id] = $option;
- }
- }
- $form['B']['DB']['SELECT_DB']['#options'] = [
- 'Full Genomes/Scaffolds' => $scaffolds,
- 'Transcripts/Unigenes' => $transcripts,
- ];
- }
|