transition_actions_edit.smarty.svn-base

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

SVN-BASE
33
字号
<h2>{i18n}Transition Effects{/i18n}</h2>    {$add_form->render()}    <br />        {if empty($aActionTriggers)}  <div class="ktInfoMessage"><span>{i18n}This transition has no actions associated with it..{/i18n}</span></div>    {else}    <table class="kt_collection narrow" cellspacing="0">    <thead>        <tr>            <th>{i18n}Action{/i18n}</th>                    <th>{i18n}Edit{/i18n}</th>                    <th>{i18n}Delete{/i18n}</th>                                                      <th>{i18n}Configuration{/i18n}</th>                            </tr>        </thead>        <tbody>        {foreach from=$aActionTriggers item=oTrigger}         <tr>             <td>{$oTrigger->getName()}</td>             <td>{if $oTrigger->bIsConfigurable}<a class="ktAction ktEdit" href="{addQS context=$context}action=editactiontrigger&fTriggerInstanceId={$oTrigger->getConfigId()}{/addQS}">edit</a>{else}&mdash;{/if}</td>             <td><a class="ktAction ktDelete" href="{addQS context=$context}action=deleteactiontrigger&fTriggerInstanceId={$oTrigger->getConfigId()}{/addQS}">delete</a></td>                                                    <td>{$oTrigger->getConfigDescription()}</td>                      </tr>        {/foreach}        </tbody>    </table>            {/if}

⌨️ 快捷键说明

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