simple_selection.smarty.2.tmp

来自「PHP 知识管理系统(基于树结构的知识管理系统), 英文原版的PHP源码。」· TMP 代码 · 共 20 行

TMP
20
字号
  {if empty($vocab)}      <div class="ktInfoMessage"><span>{$context->sEmptyMessage}</span></div>  {else}        {* radio or checkboxes *}      {if $options.multi}          {foreach item=lookup key=lookup_key from=$vocab}               <input type="checkbox" name="{$name}[]" value="{$lookup_key}" {if $context->selected($lookup_key)}checked="true"{/if}>{$lookup} <br />          {/foreach}        {else}          {if $options.initial_string}            <input type="radio" name="{$name}" {if $context->selected('')}checked="true"{/if}>{$options.initial_string} <br />    {/if}                    {foreach item=lookup key=lookup_key from=$vocab}               <input type="radio" name="{$name}" value="{$lookup_key}" {if $context->selected($lookup_key)}checked="true"{/if}>{$lookup} <br />          {/foreach}        {/if}    {/if}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?