{* -------------------------------------
[Template Parts]
Simple Radio Button
[Example]
xxxxxx
{inc file='_tpl_radio_Build_publish_kind.html' name="xxxx" value=$xxxx }
----------------------------------------- *}
{php}
//init--
$this->_tpl_vars['options'] = array(
'賃貸',
'売買'
);
//------
$dft_value = ($this->_tpl_vars['dft_value']!=NULL) ? $this->_tpl_vars['dft_value'] : '0';
if ($this->_tpl_vars['value'] == NULL){
$this->_tpl_vars['value'] = $dft_value;
}
{/php}
{if $cm=='n' || $cm=='e'}
{$options.0}
{$options.1}
{else}
{$options.$value}
{/if}