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