phpcs - Fix error, "CONST keyword must be lowercase; expected const but found CONST"
[civicrm-core.git] / CRM / Campaign / Form / Task / Print.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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 print voter records
38 */
39class CRM_Campaign_Form_Task_Print extends CRM_Campaign_Form_Task {
40
41 /**
100fef9d 42 * Build all the data structures needed to build the form
6a488035
TO
43 *
44 * @return void
45 * @access public
46 */
47 function preProcess() {
48 parent::preprocess();
49
50 // set print view, so that print templates are called
51 $this->controller->setPrint(1);
52
53 // get the formatted params
54 $queryParams = $this->get('queryParams');
55
56 $sortID = NULL;
57 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
58 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
59 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
60 );
61 }
62
63 $selector = new CRM_Campaign_Selector_Search($queryParams,
64 $this->_action,
65 $this->_componentClause
66 );
67 $controller = new CRM_Core_Selector_Controller($selector,
68 NULL,
69 $sortID,
70 CRM_Core_Action::VIEW,
71 $this,
72 CRM_Core_Selector_Controller::SCREEN
73 );
74 $controller->setEmbedded(TRUE);
75 $controller->run();
76 }
77
78 /**
c490a46a 79 * Build the form object - it consists of
6a488035
TO
80 * - displaying the QILL (query in local language)
81 * - displaying elements for saving the search
82 *
83 * @access public
84 *
85 * @return void
86 */
87 function buildQuickForm() {
88 //
89 // just need to add a javacript to popup the window for printing
90 //
91 $this->addButtons(array(
92 array(
93 'type' => 'next',
94 'name' => ts('Print Respondents'),
95 'js' => array('onclick' => 'window.print()'),
96 'isDefault' => TRUE,
97 ),
98 array(
99 'type' => 'back',
100 'name' => ts('Done'),
101 ),
102 )
103 );
104 }
105
106 /**
100fef9d 107 * Process the form after the input has been submitted and validated
6a488035
TO
108 *
109 * @access public
110 *
111 * @return void
112 */
113 public function postProcess() {
114 // redirect to the main search page after printing is over
115 }
116}
117