Merge pull request #14642 from civicrm/5.15
[civicrm-core.git] / CRM / Contact / Page / CustomSearch.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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
31 * @copyright CiviCRM LLC (c) 2004-2019
32 */
33
34 /**
35 * Main page for viewing all Saved searches.
36 */
37 class CRM_Contact_Page_CustomSearch extends CRM_Core_Page {
38
39 /**
40 * The action links that we need to display for the browse screen.
41 *
42 * @var array
43 */
44 public static $_links = NULL;
45
46 /**
47 * @return array
48 */
49 public static function &info() {
50 $sql = "
51 SELECT v.value, v.label, v.description
52 FROM civicrm_option_group g,
53 civicrm_option_value v
54 WHERE v.option_group_id = g.id
55 AND g.name = 'custom_search'
56 AND v.is_active = 1
57 ORDER By v.weight
58 ";
59 $dao = CRM_Core_DAO::executeQuery($sql);
60
61 $rows = [];
62 while ($dao->fetch()) {
63 if (trim($dao->description)) {
64 $rows[$dao->value] = $dao->description;
65 }
66 else {
67 $rows[$dao->value] = $dao->label;
68 }
69 }
70 return $rows;
71 }
72
73 /**
74 * Browse all custom searches.
75 *
76 * @return mixed
77 * content of the parents run method
78 */
79 public function browse() {
80 $rows = self::info();
81 $this->assign('rows', $rows);
82 return parent::run();
83 }
84
85 /**
86 * Run this page (figure out the action needed and perform it).
87 */
88 public function run() {
89 $action = CRM_Utils_Request::retrieve('action',
90 'String',
91 $this, FALSE, 'browse'
92 );
93
94 $this->assign('action', $action);
95 return $this->browse();
96 }
97
98 }