Merge pull request #15727 from civicrm/5.19
[civicrm-core.git] / api / v3 / Navigation.php
CommitLineData
3523b615 1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
3523b615 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
3523b615 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 * This api exposes CiviCRM Navigation BAO.
30 *
31 * @package CiviCRM_APIv3
32 */
33
34/**
35 * Adjust metadata for navigation reset action.
36 *
37 * @param array $params
38 */
31cb1898
AN
39function _civicrm_api3_navigation_reset_spec(&$params) {
40 $params['for']['api.required'] = TRUE;
41 $params['for']['title'] = "Is this reset for all navigation or reports";
42 $params['for']['type'] = CRM_Utils_Type::T_STRING;
cf8f0fff 43 $params['for']['options'] = [
31cb1898
AN
44 'all' => 'General Navigation rebuild from xml',
45 'report' => 'Reset report menu to default structure',
cf8f0fff 46 ];
31cb1898
AN
47 $params['domain_id']['api.default'] = CRM_Core_Config::domainID();
48 $params['domain_id']['type'] = CRM_Utils_Type::T_INT;
49 $params['domain_id']['title'] = 'Domain ID';
50}
51
52/**
53 * Reset navigation.
54 *
55 * @param array $params
56 * Array of name/value pairs.
57 *
58 * @return array
59 * API result array.
60 */
61function civicrm_api3_navigation_reset($params) {
62 if ($params['for'] == 'report') {
533ccb95 63 CRM_Core_BAO_Navigation::rebuildReportsNavigation($params['domain_id']);
31cb1898 64 }
533ccb95 65 CRM_Core_BAO_Navigation::resetNavigation();
31cb1898
AN
66 return civicrm_api3_create_success(1, $params, 'navigation', 'reset');
67}
68
69/**
70 * Adjust metadata for navigation get action.
71 *
72 * @param array $params
73 */
3523b615 74function _civicrm_api3_navigation_get_spec(&$params) {
75}
76
77/**
78 * Reset navigation.
79 *
80 * @param array $params
81 * Array of name/value pairs.
82 *
83 * @return array
84 * API result array.
85 */
86function civicrm_api3_navigation_get($params) {
87 return _civicrm_api3_basic_get(_civicrm_api3_get_BAO(__FUNCTION__), $params);
88}
89
3523b615 90/**
91 * Create navigation item.
92 *
93 * @param array $params
94 * Array of name/value pairs.
95 *
96 * @return array
97 * API result array.
98 */
99function civicrm_api3_navigation_create($params) {
cf8f0fff 100 civicrm_api3_verify_one_mandatory($params, NULL, ['name', 'label']);
a25b46e9 101 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Navigation');
3523b615 102}
103
104/**
105 * Adjust metadata for navigation create action.
106 *
107 * @param array $params
108 */
109function _civicrm_api3_navigation_delete_spec(&$params) {
110}
111
112/**
31cb1898 113 * Delete navigation item.
3523b615 114 *
115 * @param array $params
116 * Array of name/value pairs.
117 *
118 * @return array
119 * API result array.
120 */
121function civicrm_api3_navigation_delete($params) {
122 return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
123}