1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-05 07:54:24 +03:00
ifhub.club/application/frontend/skin/developer/components/field/field.checkbox.tpl
2014-10-18 13:07:45 +07:00

14 lines
337 B
Smarty

{**
* Чекбокс
*}
{extends './field.tpl'}
{block 'field' prepend}
{$_mods = "$_mods checkbox"}
{$_value = ( $_value ) ? $_value : '1'}
{/block}
{block 'field_input'}
<input type="checkbox" {field_input_attr_common} {if $smarty.local.checked}checked{else}{if $_aRequest[$smarty.local.name] == 1}checked{/if}{/if} />
{/block}