Skip to content
Snippets Groups Projects
Unverified Commit 762e3fc8 authored by Seamus Lee's avatar Seamus Lee Committed by GitHub
Browse files

Merge pull request #13193 from civicrm/5.8

5.8
parents c08e3ee3 b896a079
Branches
Tags
No related merge requests found
......@@ -45,6 +45,7 @@ class CRM_Event_Form_ManageEvent_EventInfo extends CRM_Event_Form_ManageEvent {
*/
public function preProcess() {
parent::preProcess();
$this->assign('selectedChild', 'settings');
if ($this->_id) {
$this->assign('entityID', $this->_id);
......
......@@ -60,6 +60,7 @@ class CRM_Event_Form_ManageEvent_Fee extends CRM_Event_Form_ManageEvent {
*/
public function preProcess() {
parent::preProcess();
$this->assign('selectedChild', 'fee');
}
/**
......
......@@ -72,6 +72,7 @@ class CRM_Event_Form_ManageEvent_Location extends CRM_Event_Form_ManageEvent {
*/
public function preProcess() {
parent::preProcess();
$this->assign('selectedChild', 'location');
$this->_values = $this->get('values');
if ($this->_id && empty($this->_values)) {
......
......@@ -55,6 +55,7 @@ class CRM_Event_Form_ManageEvent_Registration extends CRM_Event_Form_ManageEvent
$this->_profileBottomNumAdd = CRM_Utils_Array::value('addProfileNumAdd', $_GET, 0);
parent::preProcess();
$this->assign('selectedChild', 'registration');
$this->assign('addProfileBottom', $this->_addProfileBottom);
$this->assign('profileBottomNum', $this->_profileBottomNum);
......
......@@ -25,6 +25,7 @@ class CRM_Event_Form_ManageEvent_Repeat extends CRM_Event_Form_ManageEvent {
public function preProcess() {
parent::preProcess();
$this->assign('selectedChild', 'repeat');
$this->assign('currentEventId', $this->_id);
$checkParentExistsForThisId = CRM_Core_BAO_RecurringEntity::getParentFor($this->_id, 'civicrm_event');
......
......@@ -47,6 +47,7 @@ class CRM_Event_Form_ManageEvent_ScheduleReminders extends CRM_Event_Form_Manage
*/
public function preProcess() {
parent::preProcess();
$this->assign('selectedChild', 'reminder');
$setTab = CRM_Utils_Request::retrieve('setTab', 'Int', $this, FALSE, 0);
$mapping = CRM_Utils_Array::first(CRM_Core_BAO_ActionSchedule::getMappings(array(
......
......@@ -48,6 +48,7 @@ class CRM_Friend_Form_Event extends CRM_Event_Form_ManageEvent {
public function preProcess() {
parent::preProcess();
$this->assign('selectedChild', 'friend');
}
/**
......
......@@ -49,6 +49,7 @@ class CRM_PCP_Form_Event extends CRM_Event_Form_ManageEvent {
public function preProcess() {
parent::preProcess();
$this->assign('selectedChild', 'pcp');
}
/**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment