diff --git a/pg_2co/pg_2co.info b/pg_2co/pg_2co.info
index a703cb5..42ab49c 100644
--- a/pg_2co/pg_2co.info
+++ b/pg_2co/pg_2co.info
@@ -3,3 +3,4 @@ description = Suppport 2co API payment gateway.
 package = "Payment Gateway API"
 dependencies[] = pgapi
 core = 7.x
+configure = admin/config/pgapi/2co
diff --git a/pg_2co/pg_2co.module b/pg_2co/pg_2co.module
index 6d6c08c..fabf774 100644
--- a/pg_2co/pg_2co.module
+++ b/pg_2co/pg_2co.module
@@ -14,6 +14,17 @@ define("c2coActionUrlMulti",  "https://www.2checkout.com/checkout/spurchase");
  */
 function pg_2co_menu() {
   $items = array();
+
+  $items['admin/config/pgapi/2co'] = array(
+    'title' => '2Checkout',
+    'description' => '2Checkout payment gateway settings.',
+    'page callback' => 'drupal_get_form',
+    'page arguments' => array('pg_2co_settings'),
+    'access callback' => 'user_access',
+    'access arguments' => array('administer pgapi'),
+    'file' => 'pg_2co.admin.inc',
+  );
+
   $items['2co/done'] = array(
     'title' => 'Internal Data',
     'page callback' => 'pg_2co_done_payment',
@@ -21,16 +32,6 @@ function pg_2co_menu() {
     'file' => 'pg_2co.pages.inc',
     'type' => MENU_CALLBACK,
   );
-  $items['admin/pgdata/pgsettings/2co'] = array(
-    'title' => '2co',
-    'description' => '2co payment settings.',
-    'page callback' => 'drupal_get_form',
-    'page arguments' => array('pg_2co_settings'),
-    'access callback' => 'user_access',
-    'access arguments' => array('administer pgapi'),
-    'file' => 'pg_2co.admin.inc',
-    'type' => MENU_LOCAL_TASK,
-  );
 
   return $items;
 }
diff --git a/pg_linkpoint/pg_linkpoint.info b/pg_linkpoint/pg_linkpoint.info
index fe26c25..bf0a492 100644
--- a/pg_linkpoint/pg_linkpoint.info
+++ b/pg_linkpoint/pg_linkpoint.info
@@ -3,3 +3,4 @@ description = Suppport LinkPoint API payment gateway.
 package = "Payment Gateway API"
 dependencies[] = pgapi
 core = 7.x
+configure = admin/config/pgapi/linkpoint
diff --git a/pg_linkpoint/pg_linkpoint.module b/pg_linkpoint/pg_linkpoint.module
index 2da2271..2f50028 100644
--- a/pg_linkpoint/pg_linkpoint.module
+++ b/pg_linkpoint/pg_linkpoint.module
@@ -14,15 +14,14 @@ define("cLinkPointGAPIURL", "https://secure.linkpt.net:1129/LSGSXML");
 function pg_linkpoint_menu() {
   $items = array();
 
-  $items['admin/pgdata/pgsettings/linkpoint'] = array(
+  $items['admin/config/pgapi/linkpoint'] = array(
     'title' => 'Linkpoint',
-    'description' => 'Linkpoint payment settings.',
+    'description' => 'Linkpoint payment gateway settings.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('pg_linkpoint_settings'),
     'access callback' => 'user_access',
     'access arguments' => array('administer pgapi'),
     'file' => 'pg_linkpoint.admin.inc',
-    'type' => MENU_LOCAL_TASK,
   );
 
   return $items;
diff --git a/pg_manual_payment/pg_manual_payment.info b/pg_manual_payment/pg_manual_payment.info
index 9a14178..9b1fb4a 100644
--- a/pg_manual_payment/pg_manual_payment.info
+++ b/pg_manual_payment/pg_manual_payment.info
@@ -3,3 +3,4 @@ description = Manual payment with human verification.
 package = "Payment Gateway API"
 dependencies[] = pgapi
 core = 7.x
+configure = admin/config/pgapi/manual_payment
diff --git a/pg_paypal/pg_paypal.info b/pg_paypal/pg_paypal.info
index 85b74b0..3a9e614 100644
--- a/pg_paypal/pg_paypal.info
+++ b/pg_paypal/pg_paypal.info
@@ -3,3 +3,4 @@ description = Suppport Paypal API payment gateway.
 package = "Payment Gateway API"
 dependencies[] = pgapi
 core = 7.x
+configure = admin/config/pgapi/paypal
diff --git a/pg_paypal/pg_paypal.module b/pg_paypal/pg_paypal.module
index 450c7aa..5a96ea9 100644
--- a/pg_paypal/pg_paypal.module
+++ b/pg_paypal/pg_paypal.module
@@ -23,12 +23,11 @@ function pg_paypal_menu() {
   );
   $items['admin/config/pgapi/paypal'] = array(
     'title' => 'Paypal',
-    'description' => 'Paypal payment settings.',
+    'description' => 'Paypal payment gateway settings.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('pg_paypal_settings'),
     'access arguments' => array('administer pgapi'),
     'file' => 'pg_paypal.admin.inc',
-    'type' => MENU_CALLBACK,
   );
 
   return $items;
diff --git a/pg_rbkmoney/pg_rbkmoney.info b/pg_rbkmoney/pg_rbkmoney.info
index 6894f20..e44b8fa 100644
--- a/pg_rbkmoney/pg_rbkmoney.info
+++ b/pg_rbkmoney/pg_rbkmoney.info
@@ -3,3 +3,4 @@ description = Suppport RBK Money API payment gateway.
 package = "Payment Gateway API"
 dependencies[] = pgapi
 core = 7.x
+configure = admin/config/pgapi/rbkmoney
diff --git a/pg_rbkmoney/pg_rbkmoney.module b/pg_rbkmoney/pg_rbkmoney.module
index 1d89149..3fac82c 100644
--- a/pg_rbkmoney/pg_rbkmoney.module
+++ b/pg_rbkmoney/pg_rbkmoney.module
@@ -13,22 +13,23 @@ define("crbkmoneyPayActionUrl", "https://rbkmoney.ru/acceptpurchase.aspx");
  */
 function pg_rbkmoney_menu() {
   $items = array();
-  $items['rbkmoney/done'] = array(
-    'title' => 'Internal Data',
-    'page callback' => 'pg_rbkmoney_done_payment',
-    'access callback' => TRUE,
-    'file' => 'pg_rbkmoney.pages.inc',
-    'type' => MENU_CALLBACK,
-  );
-  $items['admin/pgdata/pgsettings/rbkmoney'] = array(
+
+  $items['admin/config/pgapi/rbkmoney'] = array(
     'title' => 'RBK Money',
-    'description' => 'rbkmoney payment settings.',
+    'description' => 'RBK Money payment gateway settings.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('pg_rbkmoney_settings'),
     'access callback' => 'user_access',
     'access arguments' => array('administer pgapi'),
     'file' => 'pg_rbkmoney.admin.inc',
-    'type' => MENU_LOCAL_TASK,
+  );
+
+  $items['rbkmoney/done'] = array(
+    'title' => 'Internal Data',
+    'page callback' => 'pg_rbkmoney_done_payment',
+    'access callback' => TRUE,
+    'file' => 'pg_rbkmoney.pages.inc',
+    'type' => MENU_CALLBACK,
   );
 
   return $items;
diff --git a/pg_roboxchange/pg_roboxchange.info b/pg_roboxchange/pg_roboxchange.info
index 9f4fd6b..50f0773 100644
--- a/pg_roboxchange/pg_roboxchange.info
+++ b/pg_roboxchange/pg_roboxchange.info
@@ -3,3 +3,4 @@ description  = Suppport RoboXchange API payment gateway.
 package = "Payment Gateway API"
 dependencies[] = pgapi
 core = 7.x
+configure = admin/config/pgapi/roboxchange
diff --git a/pg_roboxchange/pg_roboxchange.module b/pg_roboxchange/pg_roboxchange.module
index 8dcf521..7d8e892 100644
--- a/pg_roboxchange/pg_roboxchange.module
+++ b/pg_roboxchange/pg_roboxchange.module
@@ -40,7 +40,7 @@ function pg_roboxchange_menu() {
   );
   $items['admin/config/pgapi/roboxchange'] = array(
     'title' => 'RoboXchange',
-    'description' => 'RoboXchange payment settings.',
+    'description' => 'RoboXchange payment gateway settings.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('pg_roboxchange_settings'),
     'access arguments' => array('administer pgapi'),
diff --git a/pg_webmoney/pg_webmoney.info b/pg_webmoney/pg_webmoney.info
index 9ffb036..a1035a0 100644
--- a/pg_webmoney/pg_webmoney.info
+++ b/pg_webmoney/pg_webmoney.info
@@ -3,3 +3,4 @@ description = Webmoney payment gateway.
 package = "Payment Gateway API"
 dependencies[] = pgapi
 core = 7.x
+configure = admin/config/pgapi/webmoney
diff --git a/pg_webmoney/pg_webmoney.module b/pg_webmoney/pg_webmoney.module
index 958e4b4..9d275d9 100644
--- a/pg_webmoney/pg_webmoney.module
+++ b/pg_webmoney/pg_webmoney.module
@@ -55,6 +55,7 @@ function pg_webmoney_theme() {
  */
 function pg_webmoney_menu() {
   $items = array();
+
   $items['webmoney/done'] = array(
     'title' => 'Internal Data',
     'page callback' => 'pg_webmoney_done_payment',
@@ -80,13 +81,12 @@ function pg_webmoney_menu() {
   );
   $items['admin/config/pgapi/webmoney'] = array(
     'title' => 'Webmoney',
-    'description' => 'Webmoney payment settings.',
+    'description' => 'Webmoney payment gateway settings.',
     'page callback' => 'drupal_get_form',
     'page arguments' => array('pg_webmoney_list'),
     'access callback' => 'user_access',
     'access arguments' => array('administer pgapi'),
     'file' => 'pg_webmoney.admin.inc',
-    'type' => MENU_CALLBACK,
   );
   $items['admin/config/pgapi/webmoney/list'] = array(
     'title' => 'Purses',
diff --git a/pgapi.info b/pgapi.info
index 1cac37a..fdc740c 100644
--- a/pgapi.info
+++ b/pgapi.info
@@ -2,6 +2,7 @@ name = Payment Gateway API
 description = Payment Gateway API.
 package = "Payment Gateway API"
 core = 7.x
+configure = admin/config/pgapi
 
 ; Views handlers
 files[] = includes/views/handlers/pgapi_handler_field_transaction.inc
