Merge remote-tracking branch 'upstream/4.4' into 4.4-master-2014-04-30-12-58-23
[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 <h3>{if $action eq 1}{ts}Add Field{/ts}{elseif $action eq 2}{ts}Edit Field{/ts}{/if}</h3>
71 <div class="crm-block crm-form-block crm-price-field-form-block">
72 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
73 <table class="form-layout">
74 <tr class="crm-price-field-form-block-label">
75 <td class="label">{$form.label.label}</td>
76 <td>{if $action == 2}{include file='CRM/Core/I18n/Dialog.tpl' table='civicrm_price_field' field='label' id=$fid}{/if}{$form.label.html}
77 </td>
78 </tr>
79 <tr class="crm-price-field-form-block-html_type">
80 <td class="label">{$form.html_type.label}</td>
81 <td>{$form.html_type.html}
82 </td>
83 </tr>
84 {if $action neq 4 and $action neq 2}
85 <tr>
86 <td>&nbsp;</td>
87 <td class="description">{ts}Select the html type used to offer options for this field{/ts}
88 </td>
89 </tr>
90 {/if}
91 </table>
92
93 <div class="spacer"></div>
94 <div id="price-block" {if $action eq 2 && $form.html_type.value.0 eq 'Text'} class="show-block" {else} class="hide-block" {/if}>
95 <table class="form-layout">
96 <tr class="crm-price-field-form-block-price">
97 <td class="label">{$form.price.label} <span class="crm-marker" title="{ts}This field is required.{/ts}">*</span></td>
98 <td>{$form.price.html}
99 {if $action neq 4}
100 <br /><span class="description">{ts}Unit price.{/ts}</span> {help id="id-negative"}
101 {/if}
102 </td>
103 </tr>
104 {if $useForEvent}
105 <tr class="crm-price-field-form-block-count">
106 <td class="label">{$form.count.label}</td>
107 <td>{$form.count.html}<br />
108 <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>
109 {help id="id-participant-count"}
110 </td>
111 </tr>
112 <tr class="crm-price-field-form-block-max_value">
113 <td class="label">{$form.max_value.label}</td>
114 <td>{$form.max_value.html}
115 </td>
116 </tr>
117 {/if}
118 <tr class="crm-price-field-form-block-financial_type">
119 <td class="label">{$form.financial_type_id.label}<span class="crm-marker" title="{ts}This field is required.{/ts}">*</span></td></td>
120 <td>
121 {if !$financialType}
122 {capture assign=ftUrl}{crmURL p='civicrm/admin/financial/financialType' q="reset=1"}{/capture}
123 {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}
124 {else}
125 {$form.financial_type_id.html}
126 {/if}
127 </td>
128 </tr>
129 </table>
130 </div>
131
132 {if $action eq 1}
133 {* Conditionally show table for setting up selection options - for field types = radio, checkbox or select *}
134 <div id='showoption' class="hide-block">{ include file="CRM/Price/Form/OptionFields.tpl"}</div>
135 {/if}
136 <table class="form-layout">
137 <tr id="optionsPerLine" class="crm-price-field-form-block-options_per_line">
138 <td class="label">{$form.options_per_line.label}</td>
139 <td>{$form.options_per_line.html|crmAddClass:two}</td>
140 </tr>
141 <tr class="crm-price-field-form-block-is_display_amounts">
142 <td class="label">{$form.is_display_amounts.label}</td>
143 <td>{$form.is_display_amounts.html}
144 {if $action neq 4}
145 <div class="description">{ts}Display amount next to each option? If no, then the amount should be in the option description.{/ts}</div>
146 {/if}
147 </td>
148 </tr>
149 <tr class="crm-price-field-form-block-weight">
150 <td class="label">{$form.weight.label}</td>
151 <td>{$form.weight.html|crmAddClass:two}
152 {if $action neq 4}
153 <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>
154 {/if}
155 </td>
156 </tr>
157
158 <tr class="crm-price-field-form-block-help_post">
159 <td class="label">{$form.help_post.label}</td>
160 <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;
161 {if $action neq 4}
162 <div class="description">{ts}Explanatory text displayed to users for this field.{/ts}</div>
163 {/if}
164 </td>
165 </tr>
166
167 <tr class="crm-price-field-form-block-active_on">
168 <td class="label">{$form.active_on.label}</td>
169 <td>{include file="CRM/common/jcalendar.tpl" elementName=active_on}
170 {if $action neq 4}
171 <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>
172 {/if}
173 </td>
174 </tr>
175
176 <tr class="crm-price-field-form-block-expire_on">
177 <td class="label">{$form.expire_on.label}</td>
178 <td>{include file="CRM/common/jcalendar.tpl" elementName=expire_on}
179 {if $action neq 4}
180 <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>
181 {/if}
182 </td>
183 </tr>
184
185 <tr class="crm-price-field-form-block-is_required">
186 <td class="label">{$form.is_required.label}</td>
187 <td>&nbsp;{$form.is_required.html}</td>
188 </tr>
189 <tr class="crm-price-field-form-block-visibility_id">
190 <td class="label">{$form.visibility_id.label}</td>
191 <td>&nbsp;{$form.visibility_id.html} {help id="id-visibility"}</td>
192 </tr>
193 <tr class="crm-price-field-form-block-is_active">
194 <td class="label">{$form.is_active.label}</td>
195 <td>{$form.is_active.html}</td>
196 </tr>
197 </table>
198 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
199 </div>
200
201 {literal}
202 <script type="text/javascript">
203 option_html_type(this.form);
204 function calculateRowValues( row ) {
205 var mtype = cj("#membership_type_id_"+row).val();
206 var postUrl = "{/literal}{crmURL p='civicrm/ajax/memType' h=0}{literal}";
207
208 cj.post( postUrl, {mtype: mtype}, function(data) {
209 cj("#option_amount_"+ row).val(data.total_amount);
210 cj("#option_label_"+ row).val(data.name);
211 cj("#option_financial_type_id_"+ row).val(data.financial_type_id);
212 if (data.name) {
213 cj("#membership_num_terms_"+ row).val('1');
214 }
215 else {
216 cj("#membership_num_terms_"+ row).val('');
217 }
218 }, 'json');
219 }
220 </script>
221 {/literal}
222
223 {* Give link to view/edit choice options if in edit mode and html_type is one of the multiple choice types *}
224 {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') }
225 <div class="action-link">
226 <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>
227 </div>
228 {/if}
229