Merge pull request #12524 from mukeshcompucorp/SHOR-9-regression-issues-advanced...
[civicrm-core.git] / CRM / Admin / Page / Navigation.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
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
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
ce064e4f 35 * Page for displaying list of location types.
6a488035
TO
36 */
37class CRM_Admin_Page_Navigation extends CRM_Core_Page_Basic {
38
39 /**
eceb18cc 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
46 /**
eceb18cc 47 * Get BAO Name.
6a488035 48 *
a6c01b45
CW
49 * @return string
50 * Classname of BAO.
6a488035 51 */
00be9182 52 public function getBAOName() {
6a488035
TO
53 return 'CRM_Core_BAO_Navigation';
54 }
55
56 /**
eceb18cc 57 * Get action Links.
6a488035 58 *
a1a2a83d 59 * @return array|NULL
a6c01b45 60 * (reference) of action links
6a488035 61 */
02fc859b 62 public function &links() {
a1a2a83d 63 return NULL;
02fc859b 64 }
6a488035
TO
65
66 /**
eceb18cc 67 * Get name of edit form.
6a488035 68 *
a6c01b45
CW
69 * @return string
70 * Classname of edit form.
6a488035 71 */
00be9182 72 public function editForm() {
6a488035
TO
73 return 'CRM_Admin_Form_Navigation';
74 }
75
76 /**
eceb18cc 77 * Get edit form name.
6a488035 78 *
a6c01b45
CW
79 * @return string
80 * name of this page.
6a488035 81 */
00be9182 82 public function editName() {
6a488035
TO
83 return 'CiviCRM Navigation';
84 }
85
86 /**
87 * Get user context.
88 *
dd244018
EM
89 * @param null $mode
90 *
a6c01b45
CW
91 * @return string
92 * user context.
6a488035 93 */
00be9182 94 public function userContext($mode = NULL) {
6a488035
TO
95 return 'civicrm/admin/menu';
96 }
97
98 /**
eceb18cc 99 * Browse all menus.
6a488035 100 */
00be9182 101 public function browse() {
6a488035
TO
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);
8ef12e64 105
6a488035
TO
106 // Add jstree support
107 CRM_Core_Resources::singleton()
656e5c5b
CW
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');
6a488035 110 }
96025800 111
6a488035 112}