Merge pull request #15834 from francescbassas/patch-16
[civicrm-core.git] / CRM / Event / Form / Task / Print.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 * $Id$
17 *
18 */
19
20 /**
21 * This class provides the functionality to participant records
22 */
23 class CRM_Event_Form_Task_Print extends CRM_Event_Form_Task {
24
25 /**
26 * Build all the data structures needed to build the form.
27 *
28 * @return void
29 */
30 public function preProcess() {
31 parent::preprocess();
32
33 // set print view, so that print templates are called
34 $this->controller->setPrint(1);
35
36 // get the formatted params
37 $queryParams = $this->get('queryParams');
38
39 $sortID = NULL;
40 if ($this->get(CRM_Utils_Sort::SORT_ID)) {
41 $sortID = CRM_Utils_Sort::sortIDValue($this->get(CRM_Utils_Sort::SORT_ID),
42 $this->get(CRM_Utils_Sort::SORT_DIRECTION)
43 );
44 }
45
46 $selector = new CRM_Event_Selector_Search($queryParams, $this->_action, $this->_componentClause);
47 $controller = new CRM_Core_Selector_Controller($selector, NULL, $sortID, CRM_Core_Action::VIEW, $this, CRM_Core_Selector_Controller::SCREEN);
48 $controller->setEmbedded(TRUE);
49 $controller->run();
50 }
51
52 /**
53 * Build the form object - it consists of
54 * - displaying the QILL (query in local language)
55 * - displaying elements for saving the search
56 *
57 *
58 * @return void
59 */
60 public function buildQuickForm() {
61 //
62 // just need to add a javacript to popup the window for printing
63 //
64 $this->addButtons([
65 [
66 'type' => 'next',
67 'name' => ts('Print Participant List'),
68 'js' => ['onclick' => 'window.print()'],
69 'isDefault' => TRUE,
70 ],
71 [
72 'type' => 'back',
73 'name' => ts('Done'),
74 ],
75 ]);
76 }
77
78 /**
79 * Process the form after the input has been submitted and validated.
80 *
81 *
82 * @return void
83 */
84 public function postProcess() {
85 // redirect to the main search page after printing is over
86 }
87
88 }