1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-07-16 21:34:25 +03:00
ifhub.club/application/frontend/skin/developer/forms/property/form.field.date.tpl
2014-06-12 10:30:16 +07:00

28 lines
1 KiB
Smarty

{$oValue = $oProperty->getValue()}
{$oValueType = $oValue->getValueTypeObject()}
{include file="components/field/field.text.tpl"
sName = "property[{$oProperty->getId()}][date]"
sValue = $oValue->getValueForForm()
sInputClasses = 'width-150 js-date-picker'
sNote = $oProperty->getDescription()
sLabel = $oProperty->getTitle()}
{if $oProperty->getParam('use_time')}
<select name="property[{$oProperty->getId()}][time][h]">
{section name=time_h start=0 loop=24 step=1}
<option value="{$smarty.section.time_h.index}" {if $oValueType->getValueTimeH()==$smarty.section.time_h.index}selected="selected" {/if}>{$smarty.section.time_h.index}</option>
{/section}
</select>
:
<select name="property[{$oProperty->getId()}][time][m]">
{section name=time_m start=0 loop=60 step=5}
<option value="{$smarty.section.time_m.index}" {if $oValueType->getValueTimeM()==$smarty.section.time_m.index}selected="selected" {/if}>{$smarty.section.time_m.index}</option>
{/section}
</select>
<br/>
<br/>
{/if}