3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
35 * This class generates form components for Navigation.
37 class CRM_Admin_Form_Navigation
extends CRM_Admin_Form
{
40 * The parent id of the navigation menu.
42 protected $_currentParentID = NULL;
45 * Build the form object.
47 public function buildQuickForm() {
48 parent
::buildQuickForm();
50 if ($this->_action
& CRM_Core_Action
::DELETE
) {
54 if (isset($this->_id
)) {
55 $params = array('id' => $this->_id
);
56 CRM_Core_BAO_Navigation
::retrieve($params, $this->_defaults
);
59 $this->applyFilter('__ALL__', 'trim');
63 CRM_Core_DAO
::getAttribute('CRM_Core_DAO_Navigation', 'label'),
67 $this->add('text', 'url', ts('Url'), CRM_Core_DAO
::getAttribute('CRM_Core_DAO_Navigation', 'url'));
68 $permissions = CRM_Core_Permission
::basicPermissions(TRUE);
69 $include = &$this->addElement('advmultiselect', 'permission',
70 ts('Permission') . ' ', $permissions,
73 'style' => 'width:auto',
74 'class' => 'advmultiselect',
78 $include->setButtonAttributes('add', array('value' => ts('Add >>')));
79 $include->setButtonAttributes('remove', array('value' => ts('<< Remove')));
81 $operators = array('AND' => 'AND', 'OR' => 'OR');
82 $this->add('select', 'permission_operator', ts('Operator'), $operators);
84 //make separator location configurable
85 $separator = array(0 => 'None', 1 => 'After Menu Element', 2 => 'Before Menu Element');
86 $this->add('select', 'has_separator', ts('Separator?'), $separator);
88 $active = $this->add('checkbox', 'is_active', ts('Enabled?'));
90 if (CRM_Utils_Array
::value('name', $this->_defaults
) == 'Home') {
94 $parentMenu = CRM_Core_BAO_Navigation
::getNavigationList();
96 if (isset($this->_id
)) {
97 unset($parentMenu[$this->_id
]);
101 $homeMenuId = CRM_Core_DAO
::getFieldValue('CRM_Core_DAO_Navigation', 'Home', 'id', 'name');
102 unset($parentMenu[$homeMenuId]);
104 $parent = $this->add('select', 'parent_id', ts('Parent'), array('' => ts('- select -')) +
$parentMenu);
111 public function setDefaultValues() {
112 $defaults = $this->_defaults
;
113 if (isset($this->_id
)) {
114 if (!empty($this->_defaults
['permission'])) {
115 foreach (explode(',', $this->_defaults
['permission']) as $value) {
116 $components[$value] = $value;
118 $defaults['permission'] = $components;
120 //Take parent id in object variable to calculate the menu
121 //weight if menu parent id changed
122 $this->_currentParentID
= CRM_Utils_Array
::value('parent_id', $this->_defaults
);
125 $defaults['permission'] = "access CiviCRM";
128 // its ok if there is no element called is_active
129 $defaults['is_active'] = ($this->_id
) ?
$this->_defaults
['is_active'] : 1;
135 * Process the form submission.
137 public function postProcess() {
138 // get the submitted form values.
139 $params = $this->controller
->exportValues($this->_name
);
141 if (isset($this->_id
)) {
142 $params['id'] = $this->_id
;
143 $params['current_parent_id'] = $this->_currentParentID
;
146 $navigation = CRM_Core_BAO_Navigation
::add($params);
148 // also reset navigation
149 CRM_Core_BAO_Navigation
::resetNavigation();
151 CRM_Core_Session
::setStatus(ts('Menu \'%1\' has been saved.',
152 array(1 => $navigation->label
)
153 ), ts('Saved'), 'success');