Merge pull request #1458 from colemanw/contactTypeSearch
[civicrm-core.git] / templates / CRM / Custom / Form / CustomField.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 {assign var="element_name" value=$element.element_name}
27
28 {if $element.help_pre}
29 <tr class="custom_field-help-pre-row {$element.element_name}-row-help-pre">
30 <td>&nbsp;</td>
31 <td class="html-adjust description">{$element.help_pre}</td>
32 </tr>
33 {/if}
34 {if $element.options_per_line != 0 }
35 <tr class="custom_field-row {$element.element_name}-row">
36 <td class="label">{$form.$element_name.label}{if $element.help_post}{help id=$element.id file="CRM/Custom/Form/CustomField.hlp" title=$element.label}{/if}</td>
37 <td class="html-adjust">
38 {assign var="count" value="1"}
39 <table class="form-layout-compressed" style="margin-top: -0.5em;">
40 <tr>
41 {* sort by fails for option per line. Added a variable to iterate through the element array*}
42 {assign var="index" value="1"}
43 {foreach name=outer key=key item=item from=$form.$element_name}
44 {if $index < 10}
45 {assign var="index" value=`$index+1`}
46 {else}
47 <td class="labels font-light">{$form.$element_name.$key.html}</td>
48 {if $count == $element.options_per_line}
49 </tr>
50 <tr>
51 {assign var="count" value="1"}
52 {else}
53 {assign var="count" value=`$count+1`}
54 {/if}
55 {/if}
56 {/foreach}
57 {if $element.html_type eq 'Radio' and $element.is_view eq 0}
58 <td><span class="crm-clear-link">(<a href="#" title="unselect" onclick="unselectRadio('{$element_name}', '{$form.formName}'); return false;" >{ts}clear{/ts}</a>)</span></td>
59 {/if}
60 </tr>
61 </table>
62 </td>
63 </tr>
64
65 {else}
66 <tr class="custom_field-row {$element.element_name}-row">
67 <td class="label">{$form.$element_name.label}{if $element.help_post}{help id=$element.id file="CRM/Custom/Form/CustomField.hlp" title=$element.label}{/if}</td>
68 <td class="html-adjust">
69 {if $element.data_type neq 'Date' OR ($element.data_type eq 'Date' AND $element.is_view eq 1)}
70 {$form.$element_name.html}&nbsp;
71 {elseif $element.skip_calendar NEQ true}
72 {include file="CRM/common/jcalendar.tpl" elementName=$element_name}
73 {/if}
74
75 {if $element.html_type eq 'Radio' and $element.is_view eq 0}
76 <span class="crm-clear-link">(<a href="#" title="unselect" onclick="unselectRadio('{$element_name}', '{$form.formName}'); return false;" >{ts}clear{/ts}</a>)</span>
77 {elseif $element.data_type eq 'File'}
78 {if $element.element_value.data}
79 <div id="attachStatusMesg_{$element_name}" class="status hiddenElement"></div>
80 <div id="attachFile_{$element_name}">
81 <span class="html-adjust"><br />
82 &nbsp;{ts}Attached File{/ts}: &nbsp;
83 {if $element.element_value.displayURL}
84 <a href="{$element.element_value.displayURL}" class='crm-image-popup'>
85 <img src="{$element.element_value.displayURL}"
86 height = "{$element.element_value.imageThumbHeight}"
87 width="{$element.element_value.imageThumbWidth}">
88 </a>
89 {else}
90 <a href="{$element.element_value.fileURL}">{$element.element_value.fileName}</a>
91 {/if}
92 {if $element.element_value.deleteURL}
93 <a href="#" onclick="showDeleteAttachment('{$element.element_value.fileName}', '{$element.element_value.deleteURLArgs}', {$element.element_value.fid}, '#attachStatusMesg_{$element_name}', '#attachFile_{$element_name}'); return false;" title="{ts}Delete this file{/ts}"><span class="icon red-icon delete-icon" style="margin:0px 0px -5px 20px" title="{ts}Delete this file{/ts}"></span></a>
94 {/if}
95 </span>
96 </div>
97 {/if}
98 {elseif $element.html_type eq 'Autocomplete-Select'}
99 {if $element.data_type eq 'ContactReference'}
100 {include file="CRM/Custom/Form/ContactReference.tpl"}
101 {else}
102 {include file="CRM/Custom/Form/AutoComplete.tpl"}
103 {/if}
104 {/if}
105 </td>
106 </tr>
107
108 {/if}