Minahito
minah****@users*****
2006年 10月 14日 (土) 23:55:20 JST
Index: xoops2jp/html/modules/legacy/admin/templates/blocks/legacy_admin_block_actionsearch.html diff -u /dev/null xoops2jp/html/modules/legacy/admin/templates/blocks/legacy_admin_block_actionsearch.html:1.1.2.1 --- /dev/null Sat Oct 14 23:55:20 2006 +++ xoops2jp/html/modules/legacy/admin/templates/blocks/legacy_admin_block_actionsearch.html Sat Oct 14 23:55:20 2006 @@ -0,0 +1,4 @@ +<form action="<{$xoops_url}>/modules/base/admin/index.php?action=actSearch" method="post"> + <input type="text" name="keywords"/> + <input type="submit" value="<{$smarty.const._SEARCH}>" class="formButton" /> +</form> Index: xoops2jp/html/modules/legacy/admin/templates/blocks/index.html diff -u /dev/null xoops2jp/html/modules/legacy/admin/templates/blocks/index.html:1.1.2.1 --- /dev/null Sat Oct 14 23:55:20 2006 +++ xoops2jp/html/modules/legacy/admin/templates/blocks/index.html Sat Oct 14 23:55:20 2006 @@ -0,0 +1 @@ + <script>history.go(-1);</script> \ No newline at end of file Index: xoops2jp/html/modules/legacy/admin/templates/blocks/legacy_admin_block_sidemenu.html diff -u /dev/null xoops2jp/html/modules/legacy/admin/templates/blocks/legacy_admin_block_sidemenu.html:1.1.2.1 --- /dev/null Sat Oct 14 23:55:20 2006 +++ xoops2jp/html/modules/legacy/admin/templates/blocks/legacy_admin_block_sidemenu.html Sat Oct 14 23:55:20 2006 @@ -0,0 +1,24 @@ +<{foreach item=module from=$modules}> + + <{if $module->hasAdminIndex()}> + <div id="t<{$module->mXoopsModule->getShow('mid')}>" class="head"> + <a href="javascript:void(0)" onclick="ccToggle(<{$module->mXoopsModule->getShow('mid')}>)"><img src="<{"design/navy.gif"|theme}>" alt="" id="i<{$module->mXoopsModule->getShow('mid')}>" /></a> + <a href="<{$module->getAdminIndex()|escape}>"><{$module->mXoopsModule->getShow('name')}></a> + </div> + + <div id="c<{$module->mXoopsModule->getShow('mid')}>" class="submenu"> + <ul> + <{if $module->getAdminMenu()}> + <{foreach item=menu from=$module->getAdminMenu()}> + <{if $menu.show !== false}> + <li><a href="<{$menu.link|escape}>"><{$menu.title|escape}></a></li> + <{/if}> + <{/foreach}> + <{else}> + <li><{$smarty.const._AD_BASE_LANG_NO_SETTING}></li> + <{/if}> + </ul> + </div> + <{/if}> + +<{/foreach}>