diff --git a/cod_base/cod_base.features.user_permission.inc b/cod_base/cod_base.features.user_permission.inc
old mode 100644
new mode 100755
index 5ada9dd835f38dcdaec39faefe17dc8ab6d668b1..40eae3af83ede685e902a5efa002474e567c88f8
--- a/cod_base/cod_base.features.user_permission.inc
+++ b/cod_base/cod_base.features.user_permission.inc
@@ -323,16 +323,6 @@ function cod_base_user_default_permissions() {
     'module' => 'pathauto',
   );
 
-  // Exported permission: use admin toolbar.
-  $permissions['use admin toolbar'] = array(
-    'name' => 'use admin toolbar',
-    'roles' => array(
-      0 => 'administrator',
-      1 => 'content editor',
-    ),
-    'module' => 'admin',
-  );
-
   // Exported permission: view advanced help index.
   $permissions['view advanced help index'] = array(
     'name' => 'view advanced help index',
diff --git a/cod_base/cod_base.info b/cod_base/cod_base.info
old mode 100644
new mode 100755
index 5c942810aecdc9e0b07add2801ca45a2c8386cca..5469a57ceeb20ba26c0d2ed68346b9ba070e0af0
--- a/cod_base/cod_base.info
+++ b/cod_base/cod_base.info
@@ -4,7 +4,6 @@ core = 7.x
 package = COD
 php = 5.2.4
 project = cod_base
-dependencies[] = admin
 dependencies[] = admin_menu
 dependencies[] = advanced_help
 dependencies[] = comment
diff --git a/cod_base/cod_base.module b/cod_base/cod_base.module
old mode 100644
new mode 100755
index 6dfff92b818b5c648610e6e2f42d713d4b7cca0f..d940055032cca620c66ece027755cfd613cb9a91
--- a/cod_base/cod_base.module
+++ b/cod_base/cod_base.module
@@ -6,6 +6,38 @@
 
 include_once('cod_base.features.inc');
 
+
+/**
+ * Implements hook_menu().
+ */
+function cod_base_menu() {
+  $items = array();
+
+  // Top level "Store" container.
+  $items['admin/conference'] = array(
+    'title' => 'Conference',
+    'description' => 'Administer your conference.',
+    'page callback' => 'system_admin_menu_block_page',
+    'access arguments' => array('access administration pages'),
+    'file path' => drupal_get_path('module', 'system'),
+    'file' => 'system.admin.inc',
+    'weight' => -7,
+  );
+  $items['admin/conference/config'] = array(
+    'title' => 'Configuration',
+    'description' => 'Configure settings and business rules for your store.',
+    'page callback' => 'system_admin_menu_block_page',
+    'access arguments' => array('access administration pages'),
+    'type' => MENU_NORMAL_ITEM,
+    'weight' => 50,
+    'file path' => drupal_get_path('module', 'system'),
+    'file' => 'system.admin.inc',
+  );
+
+  return $items;
+}
+
+
 /**
  * Implements hook_theme().
  */
