Merge pull request #13039 from colemanw/quicksearchSetting
[civicrm-core.git] / CRM / Admin / Page / Navigation.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 */
33
34 /**
35 * Page for displaying list of location types.
36 */
37 class CRM_Admin_Page_Navigation extends CRM_Core_Page_Basic {
38
39 /**
40 * The action links that we need to display for the browse screen.
41 *
42 * @var array
43 */
44 static $_links = NULL;
45
46 /**
47 * Get BAO Name.
48 *
49 * @return string
50 * Classname of BAO.
51 */
52 public function getBAOName() {
53 return 'CRM_Core_BAO_Navigation';
54 }
55
56 /**
57 * Get action Links.
58 *
59 * @return array|NULL
60 * (reference) of action links
61 */
62 public function &links() {
63 return NULL;
64 }
65
66 /**
67 * Get name of edit form.
68 *
69 * @return string
70 * Classname of edit form.
71 */
72 public function editForm() {
73 return 'CRM_Admin_Form_Navigation';
74 }
75
76 /**
77 * Get edit form name.
78 *
79 * @return string
80 * name of this page.
81 */
82 public function editName() {
83 return 'CiviCRM Navigation';
84 }
85
86 /**
87 * Get user context.
88 *
89 * @param null $mode
90 *
91 * @return string
92 * user context.
93 */
94 public function userContext($mode = NULL) {
95 return 'civicrm/admin/menu';
96 }
97
98 /**
99 * Browse all menus.
100 */
101 public function browse() {
102 // assign home id to the template
103 $homeMenuId = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_Navigation', 'Home', 'id', 'name');
104 $this->assign('homeMenuId', $homeMenuId);
105
106 // Add jstree support
107 CRM_Core_Resources::singleton()
108 ->addScriptFile('civicrm', 'bower_components/jstree/dist/jstree.min.js', 0, 'html-header')
109 ->addStyleFile('civicrm', 'bower_components/jstree/dist/themes/default/style.min.css');
110 }
111
112 }