CRM-15932 - Fix exclude date format
[civicrm-core.git] / CRM / Core / Form / Search.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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. |
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 along with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25 */
26
27 /**
28 * Base class for most search forms
29 */
30 class CRM_Core_Form_Search extends CRM_Core_Form {
31
32 /**
33 * Are we forced to run a search
34 *
35 * @var int
36 */
37 protected $_force;
38
39 /**
40 * Name of search button
41 *
42 * @var string
43 */
44 protected $_searchButtonName;
45
46 /**
47 * Name of action button
48 *
49 * @var string
50 */
51 protected $_actionButtonName;
52
53 /**
54 * Form values that we will be using
55 *
56 * @var array
57 */
58 public $_formValues;
59
60 /**
61 * Have we already done this search
62 *
63 * @var boolean
64 */
65 protected $_done;
66
67 /**
68 * What context are we being invoked from
69 *
70 * @var string
71 */
72 protected $_context = NULL;
73
74 /**
75 * The list of tasks or actions that a searcher can perform on a result set.
76 *
77 * @var array
78 */
79 protected $_taskList = array();
80
81 /**
82 * Builds the list of tasks or actions that a searcher can perform on a result set.
83 *
84 * To modify the task list, child classes should alter $this->_taskList,
85 * preferably by extending this method.
86 *
87 * @return array
88 */
89 protected function buildTaskList() {
90 return $this->_taskList;
91 }
92
93 /**
94 * Common buildform tasks required by all searches
95 */
96 public function buildQuickform() {
97 $resources = CRM_Core_Resources::singleton();
98
99 if ($resources->ajaxPopupsEnabled) {
100 // Script needed by some popups
101 $this->assign('includeWysiwygEditor', TRUE);
102 }
103
104 $resources->addScriptFile('civicrm', 'js/crm.searchForm.js', 1, 'html-header');
105
106 $this->addButtons(array(
107 array(
108 'type' => 'refresh',
109 'name' => ts('Search'),
110 'isDefault' => TRUE,
111 ),
112 ));
113
114 $this->addClass('crm-search-form');
115
116 // for backwards compatibility we pass an argument to addTaskMenu even though
117 // it could just as well access $this->_taskList internally
118 $tasks = $this->buildTaskList();
119 $this->addTaskMenu($tasks);
120 }
121
122 /**
123 * Add checkboxes for each row plus a master checkbox
124 */
125 public function addRowSelectors($rows) {
126 $this->addElement('checkbox', 'toggleSelect', NULL, NULL, array('class' => 'select-rows'));
127 foreach ($rows as $row) {
128 $this->addElement('checkbox', $row['checkbox'], NULL, NULL, array('class' => 'select-row'));
129 }
130 }
131
132 /**
133 * Add actions menu to search results form
134 * @param $tasks
135 */
136 public function addTaskMenu($tasks) {
137 if (is_array($tasks) && !empty($tasks)) {
138 $tasks = array('' => ts('Actions')) + $tasks;
139 $this->add('select', 'task', NULL, $tasks, FALSE, array('class' => 'crm-select2 crm-action-menu huge crm-search-result-actions'));
140 $this->add('submit', $this->_actionButtonName, ts('Go'), array('class' => 'hiddenElement crm-search-go-button'));
141
142 // Radio to choose "All items" or "Selected items only"
143 $selectedRowsRadio = $this->addElement('radio', 'radio_ts', NULL, '', 'ts_sel', array('checked' => 'checked'));
144 $allRowsRadio = $this->addElement('radio', 'radio_ts', NULL, '', 'ts_all');
145 $this->assign('ts_sel_id', $selectedRowsRadio->_attributes['id']);
146 $this->assign('ts_all_id', $allRowsRadio->_attributes['id']);
147 }
148 }
149
150 }