INFRA-132 - CRM/Member - phpcbf
[civicrm-core.git] / CRM / Member / Form / Task / PDFLetter.php
CommitLineData
2d3e3c7b 1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
2d3e3c7b 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
2d3e3c7b 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
2d3e3c7b 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_Member_Form_Task_PDFLetter extends CRM_Member_Form_Task {
41
42 /**
100fef9d 43 * All the existing templates in the system
2d3e3c7b 44 *
45 * @var array
46 */
47 public $_templates = NULL;
48
49 public $_single = NULL;
50
51 public $_cid = NULL;
52
53 /**
100fef9d 54 * Build all the data structures needed to build the form
2d3e3c7b 55 *
56 * @return void
2d3e3c7b 57 */
00be9182 58 public function preProcess() {
2d3e3c7b 59 $this->skipOnHold = $this->skipDeceased = FALSE;
60 parent::preProcess();
61 $this->setContactIDs();
62 CRM_Contact_Form_Task_PDFLetterCommon::preProcess($this);
63 }
64
65 /**
66 * Set defaults
67 * (non-PHPdoc)
68 * @see CRM_Core_Form::setDefaultValues()
69 */
00be9182 70 public function setDefaultValues() {
b09fe5ed 71 return CRM_Contact_Form_Task_PDFLetterCommon::setDefaultValues();
2d3e3c7b 72 }
73
74 /**
c490a46a 75 * Build the form object
2d3e3c7b 76 *
2d3e3c7b 77 *
78 * @return void
79 */
80 public function buildQuickForm() {
81 //enable form element
82 $this->assign('suppressForm', FALSE);
2d3e3c7b 83 CRM_Contact_Form_Task_PDFLetterCommon::buildQuickForm($this);
2d3e3c7b 84 }
85
86 /**
100fef9d 87 * Process the form after the input has been submitted and validated
2d3e3c7b 88 *
2d3e3c7b 89 *
355ba699 90 * @return void
2d3e3c7b 91 */
92 public function postProcess() {
93 // TODO: rewrite using contribution token and one letter by contribution
94 $this->setContactIDs();
95 $skipOnHold = isset($this->skipOnHold) ? $this->skipOnHold : FALSE;
96 $skipDeceased = isset($this->skipDeceased) ? $this->skipDeceased : TRUE;
53e258d3
DL
97 CRM_Member_Form_Task_PDFLetterCommon::postProcessMembers(
98 $this, $this->_memberIds, $skipOnHold, $skipDeceased, $this->_contactIds
99 );
2d3e3c7b 100 }
101
102 /**
100fef9d 103 * List available tokens, at time of writing these were
2d3e3c7b 104 * {membership.id} => Membership ID
105 * {membership.status} => Membership Status
106 * {membership.type} => Membership Type
107 * {membership.start_date} => Membership Start Date
108 * {membership.join_date} => Membership Join Date
109 * {membership.end_date} => Membership End Date
110 * {membership.fee} => Membership Fee
4a2db77c 111 * @return array
2d3e3c7b 112 */
113 public function listTokens() {
114 return CRM_Core_SelectValues::membershipTokens();
115 }
116}