Fix more entities to support custom fields (via api)
[civicrm-core.git] / api / v3 / Navigation.php
CommitLineData
3523b615 1<?php
2/*
3 +--------------------------------------------------------------------+
3435af9a 4 | CiviCRM version 4.7 |
3523b615 5 +--------------------------------------------------------------------+
1f4ea726 6 | Copyright CiviCRM LLC (c) 2004-2017 |
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;
43 $params['for']['options'] = array(
44 'all' => 'General Navigation rebuild from xml',
45 'report' => 'Reset report menu to default structure',
46 );
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
90/**
91 * Adjust metadata for navigation create action.
92 *
93 * @param array $params
94 */
95function _civicrm_api3_navigation_create_spec(&$params) {
7824ac72
SL
96 $params['domain_id']['api.default'] = CRM_Core_Config::domainID();
97 $params['domain_id']['type'] = CRM_Utils_Type::T_INT;
98 $params['domain_id']['title'] = 'Domain ID';
3523b615 99}
100
101/**
102 * Create navigation item.
103 *
104 * @param array $params
105 * Array of name/value pairs.
106 *
107 * @return array
108 * API result array.
109 */
110function civicrm_api3_navigation_create($params) {
7824ac72 111 civicrm_api3_verify_one_mandatory($params, NULL, array('name', 'label'));
a25b46e9 112 return _civicrm_api3_basic_create(_civicrm_api3_get_BAO(__FUNCTION__), $params, 'Navigation');
3523b615 113}
114
115/**
116 * Adjust metadata for navigation create action.
117 *
118 * @param array $params
119 */
120function _civicrm_api3_navigation_delete_spec(&$params) {
121}
122
123/**
31cb1898 124 * Delete navigation item.
3523b615 125 *
126 * @param array $params
127 * Array of name/value pairs.
128 *
129 * @return array
130 * API result array.
131 */
132function civicrm_api3_navigation_delete($params) {
133 return _civicrm_api3_basic_delete(_civicrm_api3_get_BAO(__FUNCTION__), $params);
134}