admin_simpletemplate.html.en.php

来自「FP2 CRM code+Mysql DB」· PHP 代码 · 共 53 行

PHP
53
字号
<html>
<head>
<title><?php echo htmlspecialchars($t->title);?>.::.<?php echo htmlspecialchars($t->subTitle);?></title>
<link href="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/css/adminStyle.css" rel="stylesheet" type="text/css">
</head>
<body background="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/images/background.gif">
<div>
  <table border="1" style="border-collapse:collapse" align="center" class="OuterTable" width="839" height="100%" bgcolor="#FFFFFF">
    <tr>
      <td colspan="3" height="100px">
	  <table width="100%" border="0" cellpadding="0" cellspacing="0">
          <tr>
            <td colspan="4" class="mainHeading"><img src="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/images/libertas_admin_header.jpg" width="839" height="169"></td>
          </tr>
        </table></td>
    </tr>

    <tr>
      <td colspan="2" valign="top">
	  
	  <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
          <tr>
            <td width="100%" valign="top" style="padding:8px" height="10px">
				<table width="100%">
					<tr>
					  <td bgcolor="#F8F8F8" style="font-family:Verdana, Arial, Helvetica, sans-serif;font-size:12px;font-weight:bold"><?php echo htmlspecialchars($t->subTitle);?></td>
					</tr>
					<?php if ($t->errorList)  {?>
					<tr>
					  <td align="left" class="adminErrorMsg"><?php if ($this->options['strict'] || (isset($t) && method_exists($t,'showErrors'))) echo htmlspecialchars($t->showErrors());?></td>
					</tr>
					<?php }?>
					<?php if ($t->message)  {?>
					<tr>
					  <td align="left" class="adminUserMsg"><?php if ($this->options['strict'] || (isset($t) && method_exists($t,'showMessages'))) echo htmlspecialchars($t->showMessages());?></td>
					</tr>
					<?php }?>
			  </table>
		    </td>
          </tr>
          <tr>
            <td width="100%" valign="middle" style="padding:8px">
				<?php if ($this->options['strict'] || (isset($t) && method_exists($t,'renderContents'))) echo htmlspecialchars($t->renderContents());?> 
		    </td>
          </tr>

        </table>
		
	  </td>
    </tr>
  </table>
</div>

⌨️ 快捷键说明

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