Merge pull request #3066 from relldoesphp/CRM-14466
[civicrm-core.git] / templates / CRM / Admin / Page / APIExplorer.tpl
CommitLineData
e4176358
CW
1{*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.5 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2014 |
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
0c3a6e64 26<style>
f78ce9c3 27 {literal}
2b6e1174
CW
28 #api-explorer pre {
29 line-height: 1.3em;
30 font-size: 11px;
31 margin: 0;
32 border: 0 none;
33 }
34 pre#api-result {
e4176358
CW
35 padding:1em;
36 max-height: 50em;
2b6e1174 37 border: 1px solid lightgrey;
e4176358
CW
38 }
39 #api-params-table th:first-child,
40 #api-params-table td:first-child {
41 width: 35%;
42 }
43 #api-params-table td:first-child + td,
126a565b
CW
44 #api-params-table th:first-child + th,
45 #api-generated td:first-child {
46 width: 9em;
e4176358
CW
47 }
48 #api-params {
49 min-height: 1em;
50 }
51 #api-params .red-icon {
52 margin-top: .5em;
53 }
e4176358 54 #api-explorer label {
c275764e 55 display: inline;
e4176358
CW
56 font-weight: bold;
57 }
e4176358
CW
58 #api-generated-wraper,
59 #api-result {
60 overflow: auto;
61 }
c275764e
CW
62 #api-explorer .api-options-row + .api-options-row label {
63 display: none;
64 }
65 .api-options-row td:first-child {
66 text-align: right;
67 }
8ffa1387
CW
68 .select2-choice .icon {
69 margin-top: .2em;
70 background-image: url("{/literal}{$config->resourceBase}{literal}/i/icons/jquery-ui-2786C2.png");
71 }
2b6e1174
CW
72 .select2-default .icon {
73 background-image: url("{/literal}{$config->resourceBase}{literal}/i/icons/jquery-ui-52534D.png");
74 opacity: .8;
75 }
76 pre ol.linenums li {
77 list-style-type: decimal;
78 color: #CFCFCF;
79 }
80 pre ol.linenums li:hover {
81 color: #9c9c9c;
82 }
f78ce9c3 83 {/literal}
0c3a6e64
CW
84</style>
85
f78ce9c3 86<form id="api-explorer">
e4176358
CW
87 <label for="api-entity">{ts}Entity{/ts}:</label>
88 <select class="crm-form-select crm-select2" id="api-entity" name="entity">
89 <option value="" selected="selected">{ts}Choose{/ts}...</option>
f78ce9c3
CW
90 {crmAPI entity="Entity" action="get" var="entities" version=3}
91 {foreach from=$entities.values item=entity}
92 <option value="{$entity}">{$entity}</option>
93 {/foreach}
94 </select>
e4176358
CW
95 &nbsp;&nbsp;
96 <label for="api-action">{ts}Action{/ts}:</label>
2b6e1174 97 <input class="crm-form-text" id="api-action" name="action" value="get">
e4176358 98 &nbsp;&nbsp;
0c3a6e64 99
e4176358 100 <label for="debug-checkbox" title="{ts}Display debug output with results.{/ts}">
e94642d4 101 <input type="checkbox" class="crm-form-checkbox api-param-checkbox api-input" id="debug-checkbox" name="debug" value="1" >debug
f78ce9c3
CW
102 </label>
103 &nbsp;|&nbsp;
0c3a6e64 104
e4176358 105 <label for="sequential-checkbox" title="{ts}Sequential is more compact format, well-suited for json and smarty.{/ts}">
2b6e1174 106 <input type="checkbox" class="crm-form-checkbox api-param-checkbox api-input" id="sequential-checkbox" name="sequential" checked="checked" value="1">sequential
f78ce9c3 107 </label>
0c3a6e64 108
e4176358
CW
109 <table id="api-params-table">
110 <thead style="display: none;">
111 <tr>
112 <th>{ts}Name{/ts} {help id='param-name'}</th>
113 <th>{ts}Operator{/ts} {help id='param-op'}</th>
114 <th>{ts}Value{/ts} {help id='param-value'}</th>
115 </tr>
116 </thead>
117 <tbody id="api-params"></tbody>
f78ce9c3 118 </table>
8ffa1387
CW
119 <div id="api-param-buttons" style="display: none;">
120 <a href="#" class="crm-hover-button" id="api-params-add"><span class="icon ui-icon-plus"></span>{ts}Add Parameter{/ts}</a>
c275764e 121 <a href="#" class="crm-hover-button" id="api-option-add"><span class="icon ui-icon-gear"></span>{ts}Add Option{/ts}</a>
8ffa1387 122 <a href="#" class="crm-hover-button" id="api-chain-add"><span class="icon ui-icon-link"></span>{ts}Chain API Call{/ts}</a>
e4176358
CW
123 </div>
124 <div id="api-generated-wraper">
125 <table id="api-generated" border=1>
126 <caption>{ts}Code{/ts}</caption>
e94642d4 127 <tr><td>Rest</td><td><pre class="prettyprint" id="api-rest"></pre></td></tr>
cd77ffa6
CW
128 <tr><td>Smarty</td><td><pre class="prettyprint linenums" id="api-smarty" title='smarty syntax (for get actions)'></pre></td></tr>
129 <tr><td>Php</td><td><pre class="prettyprint linenums" id="api-php" title='php syntax'></pre></td></tr>
130 <tr><td>Javascript</td><td><pre class="prettyprint linenums" id="api-json" title='javascript syntax'></pre></td></tr>
e4176358
CW
131 </table>
132 </div>
133 <input type="submit" value="{ts}Execute{/ts}" class="form-submit"/>
2b6e1174 134<pre id="api-result" class="linenums">
e4176358 135{ts}The result of api calls are displayed in this area.{/ts}
0c3a6e64 136</pre>
f78ce9c3 137</form>
2b6e1174 138
e4176358
CW
139{strip}
140<script type="text/template" id="api-param-tpl">
141 <tr class="api-param-row">
2b6e1174 142 <td><input style="width: 100%;" class="crm-form-text api-param-name api-input" value="<%= name %>" placeholder="{ts}Parameter{/ts}" /></td>
e4176358
CW
143 <td>
144 <select class="crm-form-select api-param-op">
145 {foreach from=$operators item='op'}
146 <option value="{$op|htmlspecialchars}">{$op|htmlspecialchars}</option>
147 {/foreach}
148 </select>
149 </td>
150 <td>
2b6e1174 151 <input style="width: 85%;" class="crm-form-text api-param-value api-input" placeholder="{ts}Value{/ts}"/>
e4176358
CW
152 <a class="crm-hover-button api-param-remove" href="#"><span class="icon ui-icon-close"></span></a>
153 </td>
154 </tr>
155</script>
8ffa1387 156
b07af612
CW
157<script type="text/template" id="api-return-tpl">
158 <tr class="api-return-row">
159 <td colspan="3">
c275764e 160 <label for="api-return-value">{ts}Fields to return{/ts}:</label> &nbsp;
b07af612
CW
161 <input type="hidden" class="api-param-name" value="return" />
162 <input style="width: 50%;" id="api-return-value" class="crm-form-text api-param-value api-input" placeholder="{ts}Leave blank for default{/ts}"/>
163 </td>
164 </tr>
165</script>
166
c275764e
CW
167<script type="text/template" id="api-options-tpl">
168 <tr class="api-options-row">
169 <td>
170 <label>{ts}Options{/ts}: &nbsp;</label>
171 </td>
172 <td>
1614ef7a 173 <input class="crm-form-text api-option-name api-input" style="width: 12em;" placeholder="{ts}Option{/ts}"/>
c275764e
CW
174 </td>
175 <td>
176 <input style="width: 85%;" class="crm-form-text api-option-value api-input" placeholder="{ts}Value{/ts}"/>
177 <a class="crm-hover-button api-param-remove" href="#"><span class="icon ui-icon-close"></span></a>
178 </td>
179 </tr>
180</script>
181
8ffa1387
CW
182<script type="text/template" id="api-chain-tpl">
183 <tr class="api-chain-row">
184 <td>
2b6e1174 185 <select style="width: 100%;" class="crm-form-select api-chain-entity">
8ffa1387
CW
186 <option value=""></option>
187 {foreach from=$entities.values item=entity}
188 <option value="{$entity}">{$entity}</option>
189 {/foreach}
190 </select>
191 </td>
192 <td>
193 <select class="crm-form-select api-chain-action">
2b6e1174
CW
194 <option value="get">get</option>
195 <option value="getsingle">getsingle</option>
196 <option value="getcount">getcount</option>
197 <option value="create">create</option>
198 <option value="delete">delete</option>
8ffa1387
CW
199 </select>
200 </td>
201 <td>
2b6e1174 202 <input style="width: 85%;" class="crm-form-text api-param-value api-input" value="{ldelim}{rdelim}" placeholder="{ts}Api Params{/ts}"/>
8ffa1387
CW
203 <a class="crm-hover-button api-param-remove" href="#"><span class="icon ui-icon-close"></span></a>
204 </td>
205 </tr>
206</script>
e4176358 207{/strip}