12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?php
- ?>
- <script>
- Drupal.behaviors.blastuiSetTimeout = {
- attach: function (context, settings) {
- setTimeout(function(){
- window.location.reload(1);
- }, 5000);
- }
- };
- </script>
- <?php
-
- if ($status_code === 0) {
- drupal_set_title('BLAST Job in Queue');
- ?>
- <p>Your BLAST has been registered and will be started shortly. This page will automatically refresh.</p>
- <?php
- }
-
- elseif ($status_code === 1) {
- drupal_set_title('BLAST Job in Progress');
- ?>
- <p>Your BLAST job is currently running. The results will be listed here as soon as it completes. This page will automatically refresh.</p>
- <?php
- }
-
- elseif ($status_code === 999) {
- drupal_set_title('BLAST Job Cancelled');
- ?>
- <p>Unfortunately your BLAST job has been cancelled by an Administrator. This page will automatically refresh.</p>
- <?php
- }
- ?>
|