Browse Source

added back grouping menu item.

Lacey Sanderson 6 years ago
parent
commit
498e5d83b0
1 changed files with 11 additions and 0 deletions
  1. 11 0
      tripal/tripal.module

+ 11 - 0
tripal/tripal.module

@@ -305,6 +305,17 @@ function tripal_menu() {
     'type' => MENU_CALLBACK,
   );
 
+  /*
+   * Data Loaders (TripalImporter)
+   */
+  $items['admin/tripal/loaders'] = array(
+    'title' => 'Data Loaders',
+    'description' => t('Tools facilitating data import.'),
+    'access arguments' => array('administer tripal'),
+    'type' => MENU_NORMAL_ITEM,
+    'weight' => 6
+  );
+
   // Add in the loaders
   $importers = tripal_get_importers();
   foreach ($importers as $class_name) {