3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * Main page for viewing all Saved searches.
40 class CRM_Contact_Page_SavedSearch
extends CRM_Core_Page
{
43 * The action links that we need to display for the browse screen
48 static $_links = NULL;
51 * Delete a saved search.
59 public function delete($id) {
60 // first delete the group associated with this saved search
61 $group = new CRM_Contact_DAO_Group();
62 $group->saved_search_id
= $id;
63 if ($group->find(TRUE)) {
64 CRM_Contact_BAO_Group
::discard($group->id
);
67 $savedSearch = new CRM_Contact_DAO_SavedSearch();
68 $savedSearch->id
= $id;
69 $savedSearch->is_active
= 0;
75 * Browse all saved searches.
77 * @return content of the parents run method
80 public function browse() {
83 $savedSearch = new CRM_Contact_DAO_SavedSearch();
84 $savedSearch->is_active
= 1;
85 $savedSearch->selectAdd();
86 $savedSearch->selectAdd('id, form_values');
88 $properties = array('id', 'name', 'description');
89 while ($savedSearch->fetch()) {
90 // get name and description from group object
91 $group = new CRM_Contact_DAO_Group();
92 $group->saved_search_id
= $savedSearch->id
;
93 if ($group->find(TRUE)) {
94 $permissions = CRM_Group_Page_Group
::checkPermission($group->id
, $group->title
);
95 if (!CRM_Utils_System
::isNull($permissions)) {
98 $row['name'] = $group->title
;
99 $row['description'] = $group->description
;
101 $row['id'] = $savedSearch->id
;
102 $formValues = unserialize($savedSearch->form_values
);
103 $query = new CRM_Contact_BAO_Query($formValues);
104 $row['query_detail'] = $query->qill();
106 $action = array_sum(array_keys(self
::links()));
107 $action = $action & CRM_Core_Action
::mask($permissions);
108 $row['action'] = CRM_Core_Action
::formLink(
111 array('id' => $row['id']),
114 'savedSearch.manage.action',
124 $this->assign('rows', $rows);
125 return parent
::run();
129 * Run this page (figure out the action needed and perform it).
133 public function run() {
134 $action = CRM_Utils_Request
::retrieve('action', 'String',
135 $this, FALSE, 'browse'
138 $this->assign('action', $action);
140 if ($action & CRM_Core_Action
::DELETE
) {
141 $id = CRM_Utils_Request
::retrieve('id', 'Positive',
152 * @return array (reference) of action links
155 public static function &links() {
157 if (!(self
::$_links)) {
159 $deleteExtra = ts('Do you really want to remove this Smart Group?');
161 self
::$_links = array(
162 CRM_Core_Action
::VIEW
=> array(
163 'name' => ts('Search'),
164 'url' => 'civicrm/contact/search/advanced',
165 'qs' => 'reset=1&force=1&ssID=%%id%%',
166 'title' => ts('Search'),
168 CRM_Core_Action
::DELETE
=> array(
169 'name' => ts('Delete'),
170 'url' => 'civicrm/contact/search/saved',
171 'qs' => 'action=delete&id=%%id%%',
172 'extra' => 'onclick="return confirm(\'' . $deleteExtra . '\');"',
176 return self
::$_links;