*/
/**
- *
- * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2014
- * $Id$
- *
- */
-
-/**
- * This class generates form components for batch entry
- *
+ * This class generates form components for batch entry.
*/
class CRM_Batch_Form_Batch extends CRM_Admin_Form {
+ /**
+ * PreProcess function.
+ */
public function preProcess() {
parent::preProcess();
- // set the usercontext
+ // Set the user context.
$session = CRM_Core_Session::singleton();
$session->replaceUserContext(CRM_Utils_System::url('civicrm/batch', "reset=1"));
}
/**
* Build the form object.
- *
- * @return void
*/
public function buildQuickForm() {
parent::buildQuickForm();
/**
* Set default values for the form.
- *
- *
- * @return void
*/
public function setDefaultValues() {
$defaults = array();
if ($this->_action & CRM_Core_Action::ADD) {
- // set batch name default
+ // Set batch name default.
$defaults['title'] = CRM_Batch_BAO_Batch::generateBatchName();
}
else {
/**
* Process the form submission.
- *
- *
- * @return void
*/
public function postProcess() {
$params = $this->controller->exportValues($this->_name);
* Open a new case, add client and manager roles, and standard timeline.
*
* @param array $params
+ *
* @code
* //REQUIRED:
* 'case_type_id' => int OR
* Delete a specified case.
*
* @param array $params
+ *
* @code
* //REQUIRED:
* 'id' => int
static $domainFromName;
static $domainFromEmail;
if (empty($domainFromEmail) && (empty($params['receipt_from_name']) || empty($params['receipt_from_email']))) {
- list($domainFromName, $domainFromEmail) = CRM_Core_BAO_Domain::getNameAndEmail(TRUE);
+ list($domainFromName, $domainFromEmail) = CRM_Core_BAO_Domain::getNameAndEmail(TRUE);
}
$input['receipt_from_name'] = CRM_Utils_Array::value('receipt_from_name', $params, $domainFromName);
$input['receipt_from_email'] = CRM_Utils_Array::value('receipt_from_email', $params, $domainFromEmail);