westdc-zf1/application/admin/views/scripts/watermd/index.phtml

32 lines
1.0 KiB
PHTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$this->headTitle($this->config->title->site);
$this->headTitle('后台管理');
$this->headTitle()->setSeparator(' - ');
$this->headLink()->appendStylesheet('/css/admin.css');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/admin">后台首页</a>');
$this->breadcrumb('WATER元数据工具');
$this->breadcrumb()->setSeparator(' > ');
?>
<div id="divContent">
<div id="leftPanel">
<?= $this->partial('watermd/left.phtml'); ?>
</div>
<div id="rightPanel">
<p>此页面的所有功能都是对元数据库进行直接处理!请小心使用!不要多次刷新!</p>
<hr />
<h2>正则替换使用说明</h2>
<p>
正则表达式有很强的功能,在使用前一定要进行测试。<br />
如替换元数据中联系地址时正则表达式PATTERN可以设置为
<font color="red">
<strong>
<pre>
\&lt;delPoint\>兰州市东岗西路320号\<\/delPoint\>
</pre></strong></font>
替换表达式可以设置为:<font color="red"><strong>Donggang West Road 320</strong></font>
</p>
</div>
</div>