📄 customer.detail.list.html.en.php
字号:
</td>
<td class="subTitle" colspan="4" align="right">
<a href='contract.php?cmd=addPage&customer_id=<?php echo htmlspecialchars($t->customer_id);?>' class="<?php echo htmlspecialchars($t->rowCss);?>">Add New Contract To This Customer</a>
</td>
</tr>
<?php if ($t->pageDataContract) {?>
<tr>
<?php if ($this->options['strict'] || (is_array($t->pageListTitlesContract) || is_object($t->pageListTitlesContract))) foreach($t->pageListTitlesContract 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->pageDataContract) || is_object($t->pageDataContract))) foreach($t->pageDataContract as $key => $val) {?>
<!--tr>
{printListRowContract(val)}
</tr-->
<tr>
<!-- {printListRowDomain(val)}
-->
<td class ='<?php echo htmlspecialchars($t->rowCss);?>'> <a href='contract.detail.php?cmd=detailPage&id=<?php echo htmlspecialchars($val['id']);?>' class="<?php echo htmlspecialchars($t->rowCss);?>"><?php echo htmlspecialchars($val['name']);?></a></td>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>'> <?php echo htmlspecialchars($val['start_date']);?></td>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>'> <?php echo htmlspecialchars($val['renewal_date']);?></td>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>'> £ <?php echo htmlspecialchars($val['cost']);?></td>
<?php if ($val['status']) {?>
<td class ="<?php echo htmlspecialchars($t->rowCss);?>"> <a href='contract.detail.php?cmd=renewPage&id=<?php echo htmlspecialchars($val['id']);?>' class="<?php echo htmlspecialchars($t->rowCss);?>"><?php echo htmlspecialchars($val['status']);?></a></td>
<?php } else {?>
<td class ="<?php echo htmlspecialchars($t->rowCss);?>"> Renewed</td>
<?php }?>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>' align="right">
<?php if ($val['active']) {?>
<img src="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/images/icoActive.gif" border="0">
<?php } else {?>
<img src="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/images/icoInactive.gif" border="0">
<?php }?>
</td>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>' align="right">
<a href='contract.php?cmd=updatePage&id=<?php echo htmlspecialchars($val['id']);?>' class="<?php echo htmlspecialchars($t->rowCss);?>"><img title="Click Hear To Edit This Item" border="0" src="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/images/button_edit.png" /></a>
<!--a href='contract.php?cmd=deleteRec&id={val[id]}' class="{rowCss}" onclick="return confirm('Do You Really want to delete {val[name]}')"><img title="Click Hear To Delete This Item" border="0" src="{APP_WEB_ROOT}/templates/images/delicon.gif" /></a-->
</td>
</tr>
<?php }?>
<?php } else {?>
<tr>
<td colspan="6" class="subHeading" align="center">
No Record found in Database.
</td>
</tr>
<?php }?>
<!---------------------- Support Contract portion ends ----------------------------->
<!---------------------- Other Services portion starts ----------------------------->
<tr><td>
</td></tr>
<tr>
<td class="subTitle" colspan="3">
<?php echo htmlspecialchars($t->sublisttitleOthers);?>
</td>
<td class="subTitle" colspan="4" align="right">
<a href='otherservices.php?cmd=addPage&customer_id=<?php echo htmlspecialchars($t->customer_id);?>' class="<?php echo htmlspecialchars($t->rowCss);?>">Add New Other Service To This Customer</a>
</td>
</tr>
<?php if ($t->pageDataOthers) {?>
<tr>
<?php if ($this->options['strict'] || (is_array($t->pageListTitlesOthers) || is_object($t->pageListTitlesOthers))) foreach($t->pageListTitlesOthers 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->pageDataOthers) || is_object($t->pageDataOthers))) foreach($t->pageDataOthers as $key => $val) {?>
<!--tr>
{printListRowOthers(val)}
</tr-->
<tr>
<!-- {printListRowDomain(val)}
-->
<td class ='<?php echo htmlspecialchars($t->rowCss);?>'> <a href='otherservices.detail.php?cmd=detailPage&id=<?php echo htmlspecialchars($val['id']);?>' class="<?php echo htmlspecialchars($t->rowCss);?>"><?php echo htmlspecialchars($val['name']);?></a></td>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>'> <?php echo htmlspecialchars($val['start_date']);?></td>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>'> <?php echo htmlspecialchars($val['renewal_date']);?></td>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>'> £ <?php echo htmlspecialchars($val['cost']);?></td>
<?php if ($val['status']) {?>
<td class ="<?php echo htmlspecialchars($t->rowCss);?>"> <a href='otherservices.detail.php?cmd=renewPage&id=<?php echo htmlspecialchars($val['id']);?>' class="<?php echo htmlspecialchars($t->rowCss);?>"><?php echo htmlspecialchars($val['status']);?></a></td>
<?php } else {?>
<td class ="<?php echo htmlspecialchars($t->rowCss);?>"> Renewed</td>
<?php }?>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>' align="right">
<?php if ($val['active']) {?>
<img src="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/images/icoActive.gif" border="0">
<?php } else {?>
<img src="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/images/icoInactive.gif" border="0">
<?php }?>
</td>
<td class ='<?php echo htmlspecialchars($t->rowCss);?>' align="right">
<a href='otherservices.php?cmd=updatePage&id=<?php echo htmlspecialchars($val['id']);?>' class="<?php echo htmlspecialchars($t->rowCss);?>"><img title="Click Hear To Edit This Item" border="0" src="<?php echo htmlspecialchars($t->APP_WEB_ROOT);?>/templates/images/button_edit.png" /></a>
<!--a href='otherservices.php?cmd=deleteRec&id={val[id]}' class="{rowCss}" onclick="return confirm('Do You Really want to delete {val[name]}')"><img title="Click Hear To Delete This Item" border="0" src="{APP_WEB_ROOT}/templates/images/delicon.gif" /></a-->
</td>
</tr>
<?php }?>
<?php } else {?>
<tr>
<td colspan="6" class="subHeading" align="center">
No Record found in Database.
</td>
</tr>
<?php }?>
<!---------------------- Other Services portion ends ----------------------------->
</table>
</td></tr>
</table>
<!--
{if:specialHTML}{specialHTML:h}{end:}
{if:pageData}
<table width="100%" border="0" class="dg">
{if:pagerLinks[all]}
<tr><td align="center" bgcolor="#CEE8F4">{pager()}</td></tr>
{end:}
<tr><td align="center">
<table width="100%" border="0" cellpadding="2" cellspacing="0" class="dg">
<tr>
{foreach:pageListTitles,key,val}
<td align="{getAllignment(key)}" class="header">
{key}
</td>
{end:}
{if:actionListFlag}
<td align="right" class="header">Action</td>
{end:}
</tr>
{foreach:pageData,key,val}
<tr>
{printListRow(val)}
</tr>
{end:}
<tr><td>
</td></tr>
</table>
</td></tr>
</table>
{end:}
{if:pageDataHosting}
<table width="100%" border="0" cellpadding="0" cellspacing="0" class="dg">
<tr>
<td class="subTitle">
{sublisttitleHosting}
</td>
</tr>
</table>
<table width="100%" border="0" class="dg">
{if:pagerLinks[all]}
<tr><td align="center" bgcolor="#CEE8F4">{pager()}</td></tr>
{end:}
<tr><td align="center">
<table width="100%" border="0" cellpadding="2" cellspacing="0" class="dg">
<tr>
{foreach:pageListTitlesHosting,key,val}
<td align="{getAllignment(key)}" class="header">
{key}
</td>
{end:}
{if:actionListFlag}
<td align="right" class="header">Action</td>
{end:}
</tr>
{foreach:pageDataHosting,key,val}
<tr>
{printListRow(val)}
</tr>
{end:}
<tr><td>
</td></tr>
</table>
</td></tr>
</table>
{end:}
-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -