Merge pull request #4627 from colemanw/docblocks
[civicrm-core.git] / CRM / Contribute / Form / Task / PDFLetter.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class provides the functionality to create PDF letter for a group of
38 * contacts or a single contact.
39 */
40class CRM_Contribute_Form_Task_PDFLetter extends CRM_Contribute_Form_Task {
41
42 /**
43 * all the existing templates in the system
44 *
45 * @var array
46 */
47 public $_templates = NULL;
48
49 public $_single = NULL;
50
51 public $_cid = NULL;
52
53 /**
54 * build all the data structures needed to build the form
55 *
56 * @return void
57 * @access public
ed106721
DL
58 */
59 function preProcess() {
6a488035
TO
60 $this->skipOnHold = $this->skipDeceased = FALSE;
61 CRM_Contact_Form_Task_PDFLetterCommon::preProcess($this);
6a488035
TO
62 // store case id if present
63 $this->_caseId = CRM_Utils_Request::retrieve('caseid', 'Positive', $this, FALSE);
64
65 // retrieve contact ID if this is 'single' mode
66 $cid = CRM_Utils_Request::retrieve('cid', 'Positive', $this, FALSE);
67
68 $this->_activityId = CRM_Utils_Request::retrieve('id', 'Positive', $this, FALSE);
69
70 if ($cid) {
71 CRM_Contact_Form_Task_PDFLetterCommon::preProcessSingle($this, $cid);
72 $this->_single = TRUE;
73 $this->_cid = $cid;
74 }
75 else {
76 parent::preProcess();
77 }
78 $this->assign('single', $this->_single);
79 }
80
186c9c17
EM
81 /**
82 * This virtual function is used to set the default values of
83 * various form elements
84 *
85 * access public
86 *
87 * @return array reference to the array of default values
88 *
89 */
90 /**
91 * @return array
92 */
6a488035
TO
93 function setDefaultValues() {
94 $defaults = array();
95 if (isset($this->_activityId)) {
96 $params = array('id' => $this->_activityId);
97 CRM_Activity_BAO_Activity::retrieve($params, $defaults);
e7ddc2f9 98 $defaults['html_message'] = CRM_Utils_Array::value('details', $defaults);
6a488035 99 }
b5fd2bef
CW
100 else {
101 $defaults['thankyou_update'] = 1;
102 }
6a488035
TO
103 $defaults = $defaults + CRM_Contact_Form_Task_PDFLetterCommon::setDefaultValues();
104 return $defaults;
105 }
106
107 /**
c490a46a 108 * Build the form object
6a488035
TO
109 *
110 * @access public
111 *
112 * @return void
113 */
114 public function buildQuickForm() {
115 //enable form element
116 $this->assign('suppressForm', FALSE);
117
118 // use contact form as a base
119 CRM_Contact_Form_Task_PDFLetterCommon::buildQuickForm($this);
120
121 // specific need for contributions
383c047b 122 $this->add('static', 'more_options_header', NULL, ts('Thank-you Letter Options'));
6a488035
TO
123 $this->add('checkbox', 'receipt_update', ts('Update receipt dates for these contributions'), FALSE);
124 $this->add('checkbox', 'thankyou_update', ts('Update thank-you dates for these contributions'), FALSE);
6a488035
TO
125
126 // Group options for tokens are not yet implemented. dgg
383c047b
DG
127 $options = array(
128 '' => ts('- no grouping -'),
129 'contact_id' => ts('Contact'),
130 'contribution_recur_id' => ts('Contact and Recurring'),
131 'financial_type_id' => ts('Contact and Financial Type'),
132 'campaign_id' => ts('Contact and Campaign'),
133 'payment_instrument_id' => 'Contact and Payment Instrument',
134 );
135 $this->addElement('select', 'group_by', ts('Group contributions by'), $options, array(), "<br/>", FALSE);
136 // this was going to be free-text but I opted for radio options in case there was a script injection risk
137 $separatorOptions = array('comma' => 'Comma', 'td' => 'Table Cell' );
138 $this->addElement('select', 'group_by_separator', ts('Separator (grouped contributions)'), $separatorOptions);
139 $emailOptions = array(
140 '' => ts('Generate PDFs for printing (only)'),
141 'email' => ts('Send emails where possible. Generate printable PDFs for contacts who cannot receive email.'),
142 'both' => ts('Send emails where possible. Generate printable PDFs for all contacts.'),
383c047b 143 );
97eaa51b
EM
144 if(CRM_Core_Config::singleton()->doNotAttachPDFReceipt) {
145 $emailOptions['pdfemail'] = ts('Send emails with an attached PDF where possible. Generate printable PDFs for contacts who cannot receive email.');
146 $emailOptions['pdfemail_both'] = ts('Send emails with an attached PDF where possible. Generate printable PDFs for all contacts.');
147 }
383c047b 148 $this->addElement('select', 'email_options', ts('Print and email options'), $emailOptions, array(), "<br/>", FALSE);
ed106721 149
6a488035
TO
150 $this->addButtons(array(
151 array(
152 'type' => 'submit',
153 'name' => ts('Make Thank-you Letters'),
154 'isDefault' => TRUE,
155 ),
156 array(
157 'type' => 'cancel',
158 'name' => ts('Done'),
159 ),
160 )
161 );
162
163 }
164
165 /**
166 * process the form after the input has been submitted and validated
167 *
168 * @access public
169 *
355ba699 170 * @return void
6a488035
TO
171 */
172 public function postProcess() {
6a488035
TO
173 CRM_Contribute_Form_Task_PDFLetterCommon::postProcess($this);
174 }
175}
176