assign('single', $this->_single); } /** * Build the form object. */ public function buildQuickForm() { CRM_Contact_Form_Task_PDFLetterCommon::buildQuickForm($this); } /** * Process the form after the input has been submitted and validated. */ public function postProcess() { CRM_Contact_Form_Task_PDFLetterCommon::postProcess($this); } /** * Set default values for the form. * * @return void */ public function setDefaultValues() { return CRM_Contact_Form_Task_PDFLetterCommon::setDefaultValues(); } /** * List available tokens for this form. * * @return array */ public function listTokens() { $tokens = CRM_Core_SelectValues::contactTokens(); return $tokens; } }