Пример #1
0
 public function buildQuickForm()
 {
     parent::buildQuickForm();
     $params = array(1 => array($this->log_conn_id, 'Integer'), 2 => array($this->log_date, 'String'));
     $this->assign('whom_url', CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$this->cid}"));
     $this->assign('who_url', CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$this->altered_by_id}"));
     $this->assign('whom_name', $this->altered_name);
     $this->assign('who_name', $this->altered_by);
     $this->assign('log_date', CRM_Utils_Date::mysqlToIso($this->log_date));
     $q = "reset=1&log_conn_id={$this->log_conn_id}&log_date={$this->log_date}";
     $this->assign('revertURL', CRM_Report_Utils_Report::getNextUrl($this->detail, "{$q}&revert=1", FALSE, TRUE));
     $this->assign('revertConfirm', ts('Are you sure you want to revert all changes?'));
 }
Пример #2
0
 function buildQuickForm()
 {
     parent::buildQuickForm();
     $this->caseDetailSpecialColumnsAdd();
 }
 function buildQuickForm()
 {
     parent::buildQuickForm();
     $params = array(1 => array($this->log_conn_id, 'Integer'), 2 => array($this->log_date, 'String'));
     // let the template know who updated whom when
     $dao = CRM_Core_DAO::executeQuery($this->whoWhomWhenSql(), $params);
     if ($dao->fetch()) {
         $this->assign('who_url', CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$dao->who_id}"));
         $this->assign('whom_url', CRM_Utils_System::url('civicrm/contact/view', "reset=1&cid={$dao->whom_id}"));
         $this->assign('who_name', $dao->who_name);
         $this->assign('whom_name', $dao->whom_name);
     }
     $this->assign('log_date', $this->log_date);
     $q = "reset=1&log_conn_id={$this->log_conn_id}&log_date={$this->log_date}";
     $this->assign('revertURL', CRM_Report_Utils_Report::getNextUrl($this->detail, "{$q}&revert=1", FALSE, TRUE));
     $this->assign('revertConfirm', ts('Are you sure you want to revert all these changes?'));
 }