_id = $this->get('id'); $this->_BAOName = $this->get('BAOName'); } /** * Build the form object * * @return void */ public function buildQuickForm() { $this->applyFilter('__ALL__', 'trim'); $this->add('text', 'name', ts('Name'), CRM_Core_DAO::getAttribute('CRM_Mailing_DAO_Component', 'name'), TRUE ); $this->addRule('name', ts('Name already exists in Database.'), 'objectExists', array('CRM_Mailing_DAO_Component', $this->_id)); $this->add('select', 'component_type', ts('Component Type'), CRM_Core_SelectValues::mailingComponents()); $this->add('text', 'subject', ts('Subject'), CRM_Core_DAO::getAttribute('CRM_Mailing_DAO_Component', 'subject'), TRUE ); $this->add('textarea', 'body_text', ts('Body - TEXT Format'), CRM_Core_DAO::getAttribute('CRM_Mailing_DAO_Component', 'body_text'), TRUE ); $this->add('textarea', 'body_html', ts('Body - HTML Format'), CRM_Core_DAO::getAttribute('CRM_Mailing_DAO_Component', 'body_html') ); $this->add('checkbox', 'is_default', ts('Default?')); $this->add('checkbox', 'is_active', ts('Enabled?')); $this->addFormRule(array('CRM_Mailing_Form_Component', 'dataRule')); $this->addButtons(array( array( 'type' => 'next', 'name' => ts('Save'), 'isDefault' => TRUE, ), array( 'type' => 'cancel', 'name' => ts('Cancel'), ), ) ); } /** * Set default values for the form. * * * @return void */ public function setDefaultValues() { $defaults = array(); $params = array(); if (isset($this->_id)) { $params = array('id' => $this->_id); $baoName = $this->_BAOName; $baoName::retrieve($params, $defaults); } $defaults['is_active'] = 1; return $defaults; } /** * Process the form submission * * * @return void */ public function postProcess() { // store the submitted values in an array $params = $this->controller->exportValues($this->_name); if ($this->_action & CRM_Core_Action::UPDATE) { $params['id'] = $this->_id; } $component = CRM_Mailing_BAO_Component::add($params); CRM_Core_Session::setStatus(ts('The mailing component \'%1\' has been saved.', array( 1 => $component->name ) ), ts('Saved'), 'success'); } /** * Validation * * @param array $params (ref.) an assoc array of name/value pairs * * @param $files * @param $options * * @return mixed true or array of errors * @static */ public static function dataRule($params, $files, $options) { if ($params['component_type'] == 'Header' || $params['component_type'] == 'Footer') { $InvalidTokens = array(); } else { $InvalidTokens = array('action.forward' => ts("This token can only be used in send mailing context (body, header, footer)..")); } $errors = array(); foreach (array( 'text', 'html') as $type) { $dataErrors = array(); foreach ($InvalidTokens as $token => $desc) { if ($params['body_' . $type]) { if (preg_match('/' . preg_quote('{' . $token . '}') . '/', $params['body_' . $type])) { $dataErrors[] = '
  • ' . ts('This message is having a invalid token - %1: %2', array( 1 => $token, 2 => $desc)) . '
  • '; } } } if (!empty($dataErrors)) { $errors['body_' . $type] = ts('The following errors were detected in %1 message:', array( 1 => $type)) . '
    ' . ts('More information on tokens...') . ''; } } return empty($errors) ? TRUE : $errors; } }