Merge pull request #4892 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Core / Selector / Base.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 * A simple base class for objects that need to implement the selector api
31 * interface. This class provides common functionality with regard to actions
32 * and display names
33 *
34 * @package CRM
06b69b18 35 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
36 * $Id$
37 *
38 */
39class CRM_Core_Selector_Base {
40
41 /**
100fef9d 42 * The sort order which is computed from the columnHeaders
6a488035
TO
43 *
44 * @var array
45 */
46 protected $_order;
47
48 /**
49 * The permission mask for this selector
50 *
51 * @var string
52 */
53 protected $_permission = NULL;
54
55 /**
56 * The qfKey of the underlying search
57 *
58 * @var string
59 */
60 protected $_key;
61
62 /**
63 * This function gets the attribute for the action that
64 * it matches.
65 *
6a0b768e
TO
66 * @param string match the action to match against
67 * @param string attribute the attribute to return ( name, link, title )
6a488035
TO
68 *
69 * @return string the attribute that matches the action if any
70 *
6a488035
TO
71 *
72 */
00be9182 73 public function getActionAttribute($match, $attribute = 'name') {
6a488035
TO
74 $links = &$this->links();
75
76 foreach ($link as $action => $item) {
77 if ($match & $action) {
78 return $item[$attribute];
79 }
80 }
81 return NULL;
82 }
83
84 /**
85 * This is a static virtual function returning reference on links array. Each
86 * inherited class must redefine this function
87 *
88 * links is an array of associative arrays. Each element of the array
89 * has at least 3 fields
90 *
91 * name : the name of the link
92 * url : the URI to be used for this link
93 * qs : the parameters to the above url along with any dynamic substitutions
94 * title : A more descriptive name, typically used in breadcrumbs / navigation
95 */
00be9182 96 public static function &links() {
6a488035
TO
97 return NULL;
98 }
99
100 /**
100fef9d 101 * Compose the template file name from the class name
6a488035 102 *
6a0b768e
TO
103 * @param string $action
104 * The action being performed.
6a488035
TO
105 *
106 * @return string template file name
6a488035 107 */
00be9182 108 public function getTemplateFileName($action = NULL) {
6a488035
TO
109 return (str_replace('_', DIRECTORY_SEPARATOR, CRM_Utils_System::getClassName($this)) . ".tpl");
110 }
111
112 /**
100fef9d 113 * Getter for the sorting direction for the fields which will be displayed on the form.
6a488035
TO
114 *
115 * @param string action the action being performed
116 *
117 * @return array the elements that can be sorted along with their properties
6a488035 118 */
00be9182 119 public function &getSortOrder($action) {
6a488035
TO
120 $columnHeaders = &$this->getColumnHeaders(NULL);
121
122 if (!isset($this->_order)) {
123 $this->_order = array();
124 $start = 2;
125 $firstElementNotFound = TRUE;
126 if (!empty($columnHeaders)) {
127 foreach ($columnHeaders as $k => $header) {
128 $header = &$columnHeaders[$k];
129 if (array_key_exists('sort', $header)) {
130 if ($firstElementNotFound && $header['direction'] != CRM_Utils_Sort::DONTCARE) {
131 $this->_order[1] = &$header;
132 $firstElementNotFound = FALSE;
133 }
134 else {
135 $this->_order[$start++] = &$header;
136 }
137 }
138 unset($header);
139 }
140 }
141 if ($firstElementNotFound) {
142 // CRM_Core_Error::fatal( "Could not find a valid sort directional element" );
143 }
144 }
145 return $this->_order;
146 }
147
148 /**
100fef9d 149 * Setter for permission
6a488035
TO
150 *
151 * @var string
6a488035
TO
152 */
153 public function setPermission($permission) {
154 $this->_permission = $permission;
155 }
156
157 /**
100fef9d 158 * Get the display text in plain language for the search
6a488035
TO
159 * to display on the results page
160 *
161 * @return string
6a488035
TO
162 */
163 public function getQill() {
164 return NULL;
165 }
166
a0ee3941
EM
167 /**
168 * @return null
169 */
6a488035
TO
170 public function getSummary() {
171 return NULL;
172 }
173
a0ee3941
EM
174 /**
175 * @param $key
176 */
6a488035
TO
177 public function setKey($key) {
178 $this->_key = $key;
179 }
180
a0ee3941
EM
181 /**
182 * @return string
183 */
6a488035
TO
184 public function getKey() {
185 return $this->_key;
186 }
187}