Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds alternative view #8

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion helium_exporter.module
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ function helium_exporter_preprocess_helium_exporter_form(&$variables, $hook) {
$variables['helium_resource'] = array(
'download' => 'https://github.com/cardinalb/helium-docs/wiki/Download-Helium',
'information' => 'https://github.com/cardinalb/helium-docs/wiki',
'help' => 'https://github.com/cardinalb/helium-docs/wiki/Data-Formats'
'help' => 'https://github.com/cardinalb/helium-docs/wiki/Data-Formats',
'web-base' => 'https://helium.hutton.ac.uk',
);
}

Expand Down
3 changes: 2 additions & 1 deletion theme/helium_exporter_page.tpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<h2>Visualize plant pedigrees and overlay categorical data using Helium:</h2>
<p>
Helium is a generic platform in which various data types can be shown in a pedigree context.&nbsp;&nbsp;<a id="helium-exporter-show" href="#">Show me how</a><br />
<a href="<?php print $helium_resource['download']; ?>" target="_blank">Download Helium</a> | <a href="<?php print $helium_resource['information']; ?>" target="_blank">More Information</a>
<a href="<?php print $helium_resource['download']; ?>" target="_blank">Download Helium</a> | <a href="<?php print $helium_resource['web-base']; ?>" target="_blank">Web-based Helium</a> | <a href="<?php print $helium_resource['information']; ?>" target="_blank">More Information</a>
</p>

<div id="helium-exporter-show-window">
Expand All @@ -33,6 +33,7 @@
<p>
Download and install Helium viewer application in your computer. Please use the link below and select an operating system.
<a href="<?php print $helium_resource['download']; ?>">&#xbb; Download and install Helium</a>
<a href="<?php print $helium_resource['web-base']; ?>">&#xbb; or use the Web-based Helium</a>
</p>
</div>

Expand Down
Loading