Remove attempt to use wizard on manage ACLs
authoreileen <emcnaughton@wikimedia.org>
Sat, 27 Jan 2024 02:01:27 +0000 (15:01 +1300)
committereileen <emcnaughton@wikimedia.org>
Sat, 27 Jan 2024 02:01:27 +0000 (15:01 +1300)
templates/CRM/ACL/Header.tpl

index c98d555e3060b202bce58d44e429da067e9e3369..c97015b726cdb1c8311493c4dcba380b6949a447 100644 (file)
 <div class="help">
   <p>{ts 1=$docLink}ACLs allow you to control access to CiviCRM data. An ACL consists of an <strong>Operation</strong> (e.g. 'View' or 'Edit'), a <strong>set of data</strong> that the operation can be performed on (e.g. a group of contacts), and a <strong>Role</strong> that has permission to do this operation. Refer to the %1 for more info.{/ts}</p>
 </div>
-
-{php}
-  $currentStep = $this->getTemplateVars('step');
-  $wizard = [
-    'style' => ['barClass' => '', 'showTitle' => FALSE],
-    'currentStepNumber' => $currentStep,
-    'steps' => [
-      [
-        'title' => ts('Manage Roles'),
-        'link' => CRM_Utils_System::url('civicrm/admin/options/acl_role', 'reset=1'),
-        'collapsed' => FALSE,
-        'name' => '',
-      ],
-      [
-        'title' => ts('Assign Users'),
-        'link' => CRM_Utils_System::url('civicrm/acl/entityrole', 'reset=1'),
-        'collapsed' => FALSE,
-        'name' => '',
-      ],
-      [
-        'title' => ts('Manage ACLs'),
-        'link' => CRM_Utils_System::url('civicrm/acl', 'reset=1'),
-        'collapsed' => FALSE,
-        'name' => '',
-      ],
-    ],
-  ];
-  foreach ($wizard['steps'] as $num => &$step) {
-    $step['step'] = $step['valid'] = $step['stepNumber'] = $num + 1;
-    if ($step['stepNumber'] == $currentStep) {
-      $step['link'] = NULL;
-    }
-  }
-  $this->assign('wizard', $wizard);
-{/php}
-
-{include file="CRM/common/WizardHeader.tpl"}