Esempio n. 1
0
 function buildQuickForm()
 {
     $contributionIds = implode(',', $this->_contributionIds);
     $this->setContactIDs();
     $this->add('text', 'contactId', ts('CiviCRM ID', array('domain' => 'de.systopia.donrec')), null, $required = true);
     $this->add('hidden', 'contributionIds', $contributionIds);
     // call the (overwritten) Form's method, so the continue button is on the right...
     CRM_Core_Form::addDefaultButtons(ts('Rebook', array('domain' => 'de.systopia.donrec')));
     parent::buildQuickForm();
 }
Esempio n. 2
0
 function buildQuickForm()
 {
     CRM_Utils_System::setTitle(ts('Issue Donation Receipts', array('domain' => 'de.systopia.donrec')));
     $this->addElement('hidden', 'rsid');
     $options = array('current_year' => ts('This Year', array('domain' => 'de.systopia.donrec')), 'last_year' => ts('last year', array('domain' => 'de.systopia.donrec')), 'customized_period' => ts('Choose Date Range', array('domain' => 'de.systopia.donrec')));
     $this->addElement('select', 'time_period', 'Time Period:', $options, array('class' => 'crm-select2'));
     $this->addDateRange('donrec_contribution_horizon', '_from', '_to', ts('From:', array('domain' => 'de.systopia.donrec')), 'searchDate', TRUE, FALSE);
     // add profile selector
     $this->addElement('select', 'profile', ts('Profile', array('domain' => 'de.systopia.donrec')), CRM_Donrec_Logic_Profile::getAllNames(), array('class' => 'crm-select2'));
     // call the (overwritten) Form's method, so the continue button is on the right...
     CRM_Core_Form::addDefaultButtons(ts('Continue', array('domain' => 'de.systopia.donrec')));
 }