⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 botlist.tpl

📁 flashget43的源代码 一个比较常用的下载程序
💻 TPL
字号:
{assign var="title" value="Bots"}
{include file="top.tpl"}

<center>
	<h4>Bots</h4>
{if $enableBots}	
	<form name="botlist" id="botlist" action="botlist.php" method="post">
		<input type="hidden" id="sort" name="sort" value="none">
	</form>		
	<a href="bot.php?id=0">Add new bot</a><br>
	<br>
{if $botnames}
	<table border="1" cellpadding="2">
		<tr>
			<th><a href="javascript:my_getbyid('sort').value = 'login'; my_getbyid('botlist').submit()">Bot Name</a></th>
			<th>Delete</th>
		</tr>
	{foreach from=$botnames item=bot}
		{assign var="on_click" value="javascript: decision('Do you really want delete the bot?','botlist.php?id=`$bot.id`')"}
		<tr>
			<td><a href="bot.php?id={$bot.id}">{$bot.login}</a></td>
			<td align="center">
				<input type="Button" class="submit" onclick="{$on_click}" value="  del  ">
			</td>			
		</tr>
	{/foreach}
	</table>
{else}
	No bots found
{/if}
{else}
<p align="left">
The bot feature is currently disabled. To enable bot support, set 'enableBots' to true in your /inc/config.php file.
You may need to re-run the FlashChat installer to add the necessary knowledge bases, too.
</p>
{/if}
</center>
{include file="bottom.tpl"}

⌨️ 快捷键说明

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