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