Browse Source

Added dev state to import details

Stephen Ficklin 10 years ago
parent
commit
6b7601791b
1 changed files with 7 additions and 1 deletions
  1. 7 1
      tripal_core/includes/tripal_core.extensions.inc

+ 7 - 1
tripal_core/includes/tripal_core.extensions.inc

@@ -414,6 +414,11 @@ function tripal_core_extension_form_add_extensions(&$form, $form_state, $extensi
           $other . '</ul></div>';
       }
 
+      $state = '';
+      if (array_key_exists('dev_stage', $extension[$namespace])) {
+        $state = '<strong>Development State: </strong>' . $extension[$namespace]['dev_stage'] . "</br>";
+      }
+
       // Create the form elements that we'll later theme into tables.
       $form[$type][$guid]['header'] = array(
         '#markup' => l($extension['title'], $extension['link']),
@@ -423,6 +428,7 @@ function tripal_core_extension_form_add_extensions(&$form, $form_state, $extensi
         "<strong>Type:</strong> " . $type . "</br>" .
         "<strong>Categories: </strong>" . $extension[$namespace]['categories'] . "</br>" .
         "<strong>Authors: </strong>" . $extension[$namespace]['authors'] . "</br>" .
+        $state .
         "<strong>Chado compatible versions: </strong>" . $extension[$namespace]['chado_version'] . "</br>" .
         "<strong>Tripal compatible versions: </strong>" . $extension[$namespace]['tripal_version'] . "</br>" .
         $home_page .
@@ -753,4 +759,4 @@ function tripal_core_extensions_get_latest_module_version($project_name) {
     return 'http://ftp.drupal.org/files/projects/' . $project_name . '-' . $best_release['field_release_version'] . '.tar.gz';
   }
   return '';
-}
+}