📄 generallistonly.html.en.php
字号:
<?php if ($t->specialHTML) {?><?php echo $t->specialHTML;?><?php }?>
<?php if ($t->pageData) {?>
<table width="100%" border="0" class="dg">
<?php if ($t->pagerLinks['all']) {?>
<tr><td align="center" bgcolor="#CEE8F4"><?php if ($this->options['strict'] || (isset($t) && method_exists($t,'pager'))) echo htmlspecialchars($t->pager());?></td></tr>
<?php }?>
<tr><td align="center">
<table width="100%" border="0" cellpadding="2" cellspacing="0" class="dg">
<tr>
<?php if ($this->options['strict'] || (is_array($t->pageListTitles) || is_object($t->pageListTitles))) foreach($t->pageListTitles as $key => $val) {?>
<td align="<?php if ($this->options['strict'] || (isset($t) && method_exists($t,'getAllignment'))) echo htmlspecialchars($t->getAllignment($key));?>" class="header">
<?php echo htmlspecialchars($key);?>
</td>
<?php }?>
<?php if ($t->actionListFlag) {?>
<td align="right" class="header">Action</td>
<?php }?>
</tr>
<?php if ($this->options['strict'] || (is_array($t->pageData) || is_object($t->pageData))) foreach($t->pageData as $key => $val) {?>
<tr>
<?php if ($this->options['strict'] || (isset($t) && method_exists($t,'printListRow'))) echo htmlspecialchars($t->printListRow($val));?>
</tr>
<?php }?>
<tr><td>
</td></tr>
</table>
</td></tr>
</table>
<?php } else {?>
<table width="100%">
<tr class="subHeading">
<td align="center">No Record found in The Database.</td>
</tr>
</table>
<?php }?>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -