Merge pull request #4375 from totten/master-mysqli-compat
[civicrm-core.git] / templates / CRM / Price / Form / Field.tpl
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 *}
26 {*Javascript function controls showing and hiding of form elements based on html type.*}
27 {literal}
28 <script type="text/Javascript">
29 function option_html_type(form) {
30 var html_type_name = cj('#html_type').val();
31
32 if (html_type_name == "Text") {
33 cj("#price-block").show();
34 cj("#showoption").hide();
35
36 }
37 else {
38 cj("#price-block").hide();
39 cj("#showoption").show();
40 }
41
42 if (html_type_name == 'Radio' || html_type_name == 'CheckBox') {
43 cj("#optionsPerLine").show( );
44 }
45 else {
46 cj("#optionsPerLine").hide( );
47 cj("#optionsPerLineDef").hide( );
48 }
49
50 var radioOption, checkBoxOption;
51
52 for (var i=1; i<=15; i++) {
53 radioOption = '#radio'+i;
54 checkBoxOption = '#checkbox'+i;
55 if (html_type_name == 'Radio' || html_type_name == 'CheckBox' || html_type_name == 'Select') {
56 if (html_type_name == "CheckBox") {
57 cj(checkBoxOption).show();
58 cj(radioOption).hide();
59 }
60 else {
61 cj(radioOption).show();
62 cj(checkBoxOption).hide();
63 }
64 }
65 }
66
67 }
68 </script>
69 {/literal}
70 <div class="crm-block crm-form-block crm-price-field-form-block">
71 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
72 <table class="form-layout">
73 <tr class="crm-price-field-form-block-label">
74 <td class="label">{$form.label.label}</td>
75 <td>{if $action == 2}{include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_price_field' field='label' id=$fid}{/if}{$form.label.html}
76 </td>
77 </tr>
78 <tr class="crm-price-field-form-block-html_type">
79 <td class="label">{$form.html_type.label}</td>
80 <td>{$form.html_type.html}
81 </td>
82 </tr>
83 {if $action neq 4 and $action neq 2}
84 <tr>
85 <td>&nbsp;</td>
86 <td class="description">{ts}Select the html type used to offer options for this field{/ts}
87 </td>
88 </tr>
89 {/if}
90 </table>
91
92 <div class="spacer"></div>
93 <div id="price-block" {if $action eq 2 && $form.html_type.value.0 eq 'Text'} class="show-block" {else} class="hide-block" {/if}>
94 <table class="form-layout">
95 <tr class="crm-price-field-form-block-price">
96 <td class="label">{$form.price.label} <span class="crm-marker" title="{ts}This field is required.{/ts}">*</span></td>
97 <td>{$form.price.html}
98 {if $action neq 4}
99 <br /><span class="description">{ts}Unit price.{/ts}</span> {help id="id-negative"}
100 {/if}
101 </td>
102 </tr>
103 {if $useForEvent}
104 <tr class="crm-price-field-form-block-count">
105 <td class="label">{$form.count.label}</td>
106 <td>{$form.count.html}<br />
107 <span class="description">{ts}Enter a value here if you want to increment the number of registered participants per unit against the maximum number of participants allowed for this event.{/ts}</span>
108 {help id="id-participant-count"}
109 </td>
110 </tr>
111 <tr class="crm-price-field-form-block-max_value">
112 <td class="label">{$form.max_value.label}</td>
113 <td>{$form.max_value.html}
114 </td>
115 </tr>
116 {/if}
117 <tr class="crm-price-field-form-block-financial_type">
118 <td class="label">{$form.financial_type_id.label}<span class="crm-marker" title="{ts}This field is required.{/ts}">*</span></td></td>
119 <td>
120 {if !$financialType}
121 {capture assign=ftUrl}{crmURL p='civicrm/admin/financial/financialType' q="reset=1"}{/capture}
122 {ts 1=$ftUrl}There is no Financial Type configured of Account Relation Revenue. <a href='%1'>Click here</a> if you want to configure financial type for your site.{/ts}
123 {else}
124 {$form.financial_type_id.html}
125 {/if}
126 </td>
127 </tr>
128 </table>
129 </div>
130
131 {if $action eq 1}
132 {* Conditionally show table for setting up selection options - for field types = radio, checkbox or select *}
133 <div id='showoption' class="hide-block">{ include file="CRM/Price/Form/OptionFields.tpl"}</div>
134 {/if}
135 <table class="form-layout">
136 <tr id="optionsPerLine" class="crm-price-field-form-block-options_per_line">
137 <td class="label">{$form.options_per_line.label}</td>
138 <td>{$form.options_per_line.html|crmAddClass:two}</td>
139 </tr>
140 <tr class="crm-price-field-form-block-is_display_amounts">
141 <td class="label">{$form.is_display_amounts.label}</td>
142 <td>{$form.is_display_amounts.html}
143 {if $action neq 4}
144 <div class="description">{ts}Display amount next to each option? If no, then the amount should be in the option description.{/ts}</div>
145 {/if}
146 </td>
147 </tr>
148 <tr class="crm-price-field-form-block-weight">
149 <td class="label">{$form.weight.label}</td>
150 <td>{$form.weight.html|crmAddClass:two}
151 {if $action neq 4}
152 <div class="description">{ts}Weight controls the order in which fields are displayed in a group. Enter a positive or negative integer - lower numbers are displayed ahead of higher numbers.{/ts}</div>
153 {/if}
154 </td>
155 </tr>
156
157 <tr class="crm-price-field-form-block-help_post">
158 <td class="label">{$form.help_post.label}</td>
159 <td>{if $action == 2}{include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_price_field' field='help_post' id=$fid}{/if}{$form.help_post.html|crmAddClass:huge}&nbsp;
160 {if $action neq 4}
161 <div class="description">{ts}Explanatory text displayed to users for this field.{/ts}</div>
162 {/if}
163 </td>
164 </tr>
165
166 <tr class="crm-price-field-form-block-active_on">
167 <td class="label">{$form.active_on.label}</td>
168 <td>{include file="CRM/common/jcalendar.tpl" elementName=active_on}
169 {if $action neq 4}
170 <br /><span class="description">{ts}Date this field becomes effective (optional). Used for price set fields that are made available starting on a specific date.{/ts}</span>
171 {/if}
172 </td>
173 </tr>
174
175 <tr class="crm-price-field-form-block-expire_on">
176 <td class="label">{$form.expire_on.label}</td>
177 <td>{include file="CRM/common/jcalendar.tpl" elementName=expire_on}
178 {if $action neq 4}
179 <br /><span class="description">{ts}Date this field expires (optional). Used for price set fields that are no longer available after a specific date (e.g. early-bird pricing).{/ts}</span>
180 {/if}
181 </td>
182 </tr>
183
184 <tr class="crm-price-field-form-block-is_required">
185 <td class="label">{$form.is_required.label}</td>
186 <td>&nbsp;{$form.is_required.html}</td>
187 </tr>
188 <tr class="crm-price-field-form-block-visibility_id">
189 <td class="label">{$form.visibility_id.label}</td>
190 <td>&nbsp;{$form.visibility_id.html} {help id="id-visibility"}</td>
191 </tr>
192 <tr class="crm-price-field-form-block-is_active">
193 <td class="label">{$form.is_active.label}</td>
194 <td>{$form.is_active.html}</td>
195 </tr>
196 </table>
197 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
198 </div>
199
200 {literal}
201 <script type="text/javascript">
202 option_html_type(this.form);
203 function calculateRowValues( row ) {
204 var mtype = cj("#membership_type_id_"+row).val();
205 var postUrl = "{/literal}{crmURL p='civicrm/ajax/memType' h=0}{literal}";
206
207 cj.post( postUrl, {mtype: mtype}, function(data) {
208 cj("#option_amount_"+ row).val(data.total_amount);
209 cj("#option_label_"+ row).val(data.name);
210 cj("#option_financial_type_id_"+ row).val(data.financial_type_id);
211 if (data.name) {
212 cj("#membership_num_terms_"+ row).val('1');
213 }
214 else {
215 cj("#membership_num_terms_"+ row).val('');
216 }
217 }, 'json');
218 }
219 </script>
220 {/literal}
221
222 {* Give link to view/edit choice options if in edit mode and html_type is one of the multiple choice types *}
223 {if $action eq 2 AND ($form.data_type.value.1.0 eq 'CheckBox' OR $form.data_type.value.1.0 eq 'Radio' OR $form.data_type.value.1.0 eq 'Select') }
224 <div class="action-link">
225 <a href="{crmURL p="civicrm/admin/event/field/option" q="reset=1&action=browse&fid=`$fid`"}" class="button"><span>{ts}Multiple Choice Options{/ts}</span></a>
226 </div>
227 {/if}
228