Merge remote-tracking branch 'upstream/4.3' into 4.3-4.4-2013-11-11-10-44-51
[civicrm-core.git] / templates / CRM / UF / Form / Preview.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.4 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2013 |
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 {capture assign=infoTitle}{ts}Preview Mode{/ts}{/capture}
27 {assign var="infoType" value="info"}
28 {if $previewField}
29 {capture assign=infoMessage}<strong>{ts}Profile Field Preview{/ts}</strong>{/capture}
30 {else}
31 {capture assign=infoMessage}<strong>{ts}Profile Preview{/ts}</strong>{/capture}
32 {/if}
33 {include file="CRM/common/info.tpl"}
34 <div class="crm-form-block">
35
36 {if ! empty( $fields )}
37 {if $viewOnly}
38 {* wrap in crm-container div so crm styles are used *}
39 <div id="crm-container-inner" lang="{$config->lcMessages|truncate:2:"":true}" xml:lang="{$config->lcMessages|truncate:2:"":true}">
40 {include file="CRM/common/CMSUser.tpl"}
41 {strip}
42 {if $help_pre && $action neq 4}<div class="messages help">{$help_pre}</div>{/if}
43 {assign var=zeroField value="Initial Non Existent Fieldset"}
44 {assign var=fieldset value=$zeroField}
45 {foreach from=$fields item=field key=fieldName}
46 {if $field.skipDisplay}
47 {continue}
48 {/if}
49 {if $field.groupTitle != $fieldset}
50 {if $fieldset != $zeroField}
51 </table>
52 {if $groupHelpPost}
53 <div class="messages help">{$groupHelpPost}</div>
54 {/if}
55 {if $mode ne 8}
56 </fieldset>
57 {/if}
58 {/if}
59 {if $mode ne 8}
60 <h3>{$field.groupTitle}</h3>
61 {/if}
62 {assign var=fieldset value=`$field.groupTitle`}
63 {assign var=groupHelpPost value=`$field.groupHelpPost`}
64 {if $field.groupHelpPre}
65 <div class="messages help">{$field.groupHelpPre}</div>
66 {/if}
67 <table class="form-layout-compressed" id="table-1">
68 {/if}
69 {* Show explanatory text for field if not in 'view' mode *}
70 {if $field.help_pre && $action neq 4 && $field.field_type neq "Formatting"}
71 <tr><td>&nbsp;</td><td class="description">{$field.help_pre}</td></tr>
72 {/if}
73 {assign var=n value=$field.name}
74 {if $field.field_type eq "Formatting"}
75 <tr><td colspan="2">{$field.help_pre}</td></tr>
76 {elseif $field.options_per_line }
77 <tr>
78 <td class="option-label">{$form.$n.label}</td>
79 <td>
80 {assign var="count" value="1"}
81 {strip}
82 <table class="form-layout-compressed">
83 <tr>
84 {* sort by fails for option per line. Added a variable to iterate through the element array*}
85 {assign var="index" value="1"}
86 {foreach name=outer key=key item=item from=$form.$n}
87 {if $index < 10}
88 {assign var="index" value=`$index+1`}
89 {else}
90 <td class="labels font-light">{$form.$n.$key.html}</td>
91 {if $count == $field.options_per_line}
92 </tr>
93 {assign var="count" value="1"}
94 {else}
95 {assign var="count" value=`$count+1`}
96 {/if}
97 {/if}
98 {/foreach}
99 </table>
100 {if $field.html_type eq 'Radio' and $form.formName eq 'Preview'}
101 <span class="crm-clear-link">(<a href="#" title="unselect" onclick="unselectRadio('{$n}', '{$form.formName}'); return false;">{ts}clear{/ts}</a>)</span>
102 {/if}
103 {/strip}
104 </td>
105 </tr>
106 {else}
107 <tr>
108 <td class="label">
109 {$form.$n.label}
110 </td>
111 <td>
112 {if $n eq 'group' && $form.group || ( $n eq 'tag' && $form.tag )}
113 {include file="CRM/Contact/Form/Edit/TagsAndGroups.tpl" type=$n}
114 {elseif $n eq 'email_greeting' or $n eq 'postal_greeting' or $n eq 'addressee'}
115 {include file="CRM/Profile/Form/GreetingType.tpl"}
116 {elseif ( $field.data_type eq 'Date' AND $element.skip_calendar NEQ true ) or
117 ( $n|substr:-5:5 eq '_date' ) or ( $field.name eq 'activity_date_time' ) }
118 {include file="CRM/common/jcalendar.tpl" elementName=$form.$n.name}
119 {elseif $n|substr:0:5 eq 'phone'}
120 {assign var="phone_ext_field" value=$n|replace:'phone':'phone_ext'}
121 {$form.$n.html}
122 {if $form.$phone_ext_field.html}
123 &nbsp;{$form.$phone_ext_field.html}
124 {/if}
125 {else}
126 {if $n|substr:0:4 eq 'url-'}
127 {assign var="websiteType" value=$n|cat:"-website_type_id"}
128 {$form.$websiteType.html}&nbsp;
129 {elseif $n|substr:0:3 eq 'im-'}
130 {assign var="provider" value=$n|cat:"-provider_id"}
131 {$form.$provider.html}&nbsp;
132 {/if}
133 {$form.$n.html}
134 {if $field.is_view eq 0}
135 {if ( $field.html_type eq 'Radio' or $n eq 'gender') and $form.formName eq 'Preview'}
136 <span class="crm-clear-link">(<a href="#" title="unselect" onclick="unselectRadio('{$n}', '{$form.formName}'); return false;">{ts}clear{/ts}</a>)</span>
137 {elseif $field.html_type eq 'Autocomplete-Select'}
138 {if $field.data_type eq 'ContactReference'}
139 {include file="CRM/Custom/Form/ContactReference.tpl" element_name = $n}
140 {else}
141 {include file="CRM/Custom/Form/AutoComplete.tpl" element_name = $n}
142 {/if}
143 {/if}
144 {/if}
145 {/if}
146 </td>
147 </tr>
148 {/if}
149 {* Show explanatory text for field if not in 'view' mode *}
150 {if $field.help_post && $action neq 4}
151 <tr><td>&nbsp;</td><td class="description">{$field.help_post}</td></tr>
152 {/if}
153 {/foreach}
154
155 {if $addCAPTCHA }
156 {include file='CRM/common/ReCAPTCHA.tpl'}
157 {/if}
158 </table>
159 {if $field.groupHelpPost}
160 <div class="messages help">{$field.groupHelpPost}</div>
161 {/if}
162 {/strip}
163 </div> {* end crm-container div *}
164 {else}
165 {capture assign=infoMessage}{ts}This CiviCRM profile field is view only.{/ts}{/capture}
166 {include file="CRM/common/info.tpl"}
167 {/if}
168 {/if} {* fields array is not empty *}
169
170 <div class="crm-submit-buttons">
171 {include file="CRM/common/formButtons.tpl"}
172 </div>
173 </div>