CRM-16270: Add 'Use - Edit Mode' action for profiles
authorJKingsnorth <john@johnkingsnorth.co.uk>
Fri, 10 Apr 2015 14:52:51 +0000 (15:52 +0100)
committerJKingsnorth <john@johnkingsnorth.co.uk>
Fri, 10 Apr 2015 14:52:51 +0000 (15:52 +0100)
CRM/UF/Page/Group.php

index 4d0fdf7179266fd98baba4823755cc81b7595394..0240e7cacc019cccfd994839156dc7e281e9d7d2 100644 (file)
@@ -82,17 +82,24 @@ class CRM_UF_Page_Group extends CRM_Core_Page {
           'title' => ts('Edit CiviCRM Profile Group'),
         ),
         CRM_Core_Action::ADD => array(
-          'name' => ts('Use Profile-Create Mode'),
+          'name' => ts('Use Create Mode'),
           'url' => 'civicrm/profile/create',
           'qs' => 'gid=%%id%%&reset=1',
-          'title' => ts('Use Profile-Create Mode'),
+          'title' => ts('Use - Create Mode'),
+          'fe' => TRUE,
+        ),
+        CRM_Core_Action::ADVANCED => array(
+          'name' => ts('Use - Edit Mode'),
+          'url' => 'civicrm/profile/edit',
+          'qs' => 'gid=%%id%%&reset=1',
+          'title' => ts('Use - Edit Mode'),
           'fe' => TRUE,
         ),
         CRM_Core_Action::BASIC => array(
-          'name' => ts('Use Profile-Listings Mode'),
+          'name' => ts('Use Listings Mode'),
           'url' => 'civicrm/profile',
           'qs' => 'gid=%%id%%&reset=1',
-          'title' => ts('Use Profile-Listings Mode'),
+          'title' => ts('Use Listings Mode'),
           'fe' => TRUE,
         ),
         CRM_Core_Action::DISABLE => array(
@@ -118,7 +125,7 @@ class CRM_UF_Page_Group extends CRM_Core_Page {
           'title' => ts('HTML Form Snippet for this Profile'),
         ),
         CRM_Core_Action::COPY => array(
-          'name' => ts('Copy Profile'),
+          'name' => ts('Copy'),
           'url' => 'civicrm/admin/uf/group',
           'qs' => 'action=copy&gid=%%id%%',
           'title' => ts('Make a Copy of CiviCRM Profile Group'),