84 lines
3.9 KiB
Smarty
84 lines
3.9 KiB
Smarty
{*
|
|
+--------------------------------------------------------------------+
|
|
| CiviCRM version 4.7 |
|
|
+--------------------------------------------------------------------+
|
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
|
+--------------------------------------------------------------------+
|
|
| This file is a part of CiviCRM. |
|
|
| |
|
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
|
| under the terms of the GNU Affero General Public License |
|
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
|
| |
|
|
| CiviCRM is distributed in the hope that it will be useful, but |
|
|
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
|
| See the GNU Affero General Public License for more details. |
|
|
| |
|
|
| You should have received a copy of the GNU Affero General Public |
|
|
| License and the CiviCRM Licensing Exception along |
|
|
| with this program; if not, contact CiviCRM LLC |
|
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
|
+--------------------------------------------------------------------+
|
|
*}
|
|
{if $action eq 1 or $action eq 2 or $action eq 4}
|
|
{include file="CRM/Custom/Form/Field.tpl"}
|
|
{elseif $action eq 8}
|
|
{include file="CRM/Custom/Form/DeleteField.tpl"}
|
|
{elseif $action eq 1024 }
|
|
{include file="CRM/Custom/Form/Preview.tpl"}
|
|
{else}
|
|
{if $customField}
|
|
|
|
<div id="field_page">
|
|
{strip}
|
|
{* handle enable/disable actions*}
|
|
{include file="CRM/common/enableDisableApi.tpl"}
|
|
<table id="options" class="row-highlight">
|
|
<thead>
|
|
<tr>
|
|
<th>{ts}Field Label{/ts}</th>
|
|
<th>{ts}Data Type{/ts}</th>
|
|
<th>{ts}Field Type{/ts}</th>
|
|
<th>{ts}Order{/ts}</th>
|
|
<th>{ts}Req?{/ts}</th>
|
|
<th>{ts}Searchable?{/ts}</th>
|
|
<th>{ts}Enabled?{/ts}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$customField item=row}
|
|
<tr id="CustomField-{$row.id}" class="crm-entity {cycle values="odd-row,even-row"}{if NOT $row.is_active} disabled{/if}">
|
|
<td class="crm-editable" data-field="label">{$row.label}</td>
|
|
<td>{$row.data_type}</td>
|
|
<td>{$row.html_type}</td>
|
|
<td class="nowrap">{$row.weight}</td>
|
|
<td class="crm-editable" data-type="boolean" data-field="is_required">{if $row.is_required eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
|
|
<td class="crm-editable" data-type="boolean" data-field="is_searchable">{if $row.is_searchable eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
|
|
<td>{if $row.is_active eq 1} {ts}Yes{/ts} {else} {ts}No{/ts} {/if}</td>
|
|
<td>{$row.action|replace:'xx':$row.id}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
{/strip}
|
|
|
|
</div>
|
|
|
|
{else}
|
|
{if $action eq 16}
|
|
<div class="messages status no-popup crm-empty-table">
|
|
<img src="{$config->resourceBase}i/Inform.gif" alt="{ts}status{/ts}"/>
|
|
{ts}None found.{/ts}
|
|
</div>
|
|
{/if}
|
|
{/if}
|
|
<div class="action-link">
|
|
{crmButton p='civicrm/admin/custom/group/field/add' q="reset=1&action=add&gid=$gid" id="newCustomField" class="action-item" icon="plus-circle"}{ts}Add Custom Field{/ts}{/crmButton}
|
|
{crmButton p="civicrm/admin/custom/group" q="reset=1" class="cancel" icon="times"}{ts}Done{/ts}{/crmButton}
|
|
</div>
|
|
{/if}
|