You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
144 lines
5.1 KiB
PHP
144 lines
5.1 KiB
PHP
<div id="maincon">
|
|
|
|
<div id="leftmenu">
|
|
<div class="title"><h1>信息栏目导航</h1></div>
|
|
<dl>
|
|
|
|
<dt>系统模块</dt>
|
|
<dd>
|
|
<a href="<?php echo site_url('home') ?>">站点首页</a>
|
|
</dd>
|
|
<dd>
|
|
<a href="<?php echo site_url('special') ?>">专题管理</a>
|
|
</dd>
|
|
<dd>
|
|
<a href="<?php echo site_url('airport') ?>">机场信息</a>
|
|
</dd>
|
|
<dd>
|
|
<a href="<?php echo site_url('airline') ?>">航空公司</a>
|
|
</dd>
|
|
<dd>
|
|
<a href="<?php echo site_url('news') ?>">新闻</a>
|
|
</dd>
|
|
<dd>
|
|
<a href="<?php echo site_url('seo') ?>">SEO管理</a>
|
|
</dd>
|
|
<dd>
|
|
<a href="<?php echo site_url('festival') ?>">节庆管理</a>
|
|
</dd>
|
|
<dd>
|
|
<a href="<?php echo site_url('translate') ?>">翻译管理</a>
|
|
</dd>
|
|
<dd><a href="<?php echo site_url('embassy') ?>">大使馆</a></dd>
|
|
<dd><a href="<?php echo site_url('railway') ?>">火车站信息</a></dd>
|
|
<dd><a href="<?php echo site_url('author') ?>">作者平台</a></dd>
|
|
<dd><a href="<?php echo site_url('welcome/create_infomation_urls') ?>">静态化更新链接</a></dd>
|
|
<dd>
|
|
<a href="/sample/" target="_blank" >sample</a>
|
|
</dd>
|
|
|
|
<dd>
|
|
<a href="<?php echo site_url('analytics') ?>">首访统计</a>
|
|
</dd>
|
|
<dd>
|
|
<a href="/mysql">MYSQL</a>
|
|
</dd>
|
|
<?php if($this->config->item('site_code')=='wt'){ ?>
|
|
<dd>
|
|
<a href="<?php echo site_url('citizen') ?>">公民游管理</a>
|
|
</dd>
|
|
<?php } ?>
|
|
|
|
|
|
<dt>国家</dt>
|
|
<?php foreach ($countryList as $item)
|
|
{ ?>
|
|
<dd>
|
|
<a href="<?php echo site_url('country/' . $item->COI_SN) ?>" > <?php echo $item->COI2_Country ?> </a>
|
|
</dd>
|
|
<?php } ?>
|
|
|
|
|
|
|
|
|
|
<dt>直辖市和特区</dt>
|
|
<?php foreach ($city_list as $item)
|
|
{ ?>
|
|
<dd>
|
|
<a href="<?php echo site_url('city/' . $item->CII_SN) ?>"><?php echo $item->CII2_Name ?></a>
|
|
</dd>
|
|
<?php } ?>
|
|
|
|
<dt>省份</dt>
|
|
<?php foreach ($provinceList as $item)
|
|
{ ?>
|
|
<dd>
|
|
<a href="<?php echo site_url('province/edit/' . $item->PRI_SN) ?>" ><?php echo $item->PRI2_Name ?></a>
|
|
<a href="<?php echo site_url('province/' . $item->PRI_SN) ?>"><img src="/css/images/folder.png"/></a>
|
|
</dd>
|
|
<?php } ?>
|
|
</dl>
|
|
</div>
|
|
|
|
<div id="rightcon">
|
|
|
|
<?php if (isset($lastEditList))
|
|
{ ?>
|
|
<div class="title"> <h2 class="edit">最新编辑</h2></div>
|
|
<ul class="newedit">
|
|
<?php foreach ($lastEditList as $key => $item)
|
|
{ ?>
|
|
<li><span class="num"><?php echo sprintf('%02d', $key + 1) ?>. </span><span><?php echo $item->ic_url_title ?></span> <span class="fR">[<?php echo GetAreaName($item->ic_ht_area_type,
|
|
$item->ic_ht_area_id); ?>] <?php echo $item->ic_datetime ?> <a href="<?php echo site_url('information/edit/' . $item->is_id); ?>" >编辑</a></span></li>
|
|
<?php } ?>
|
|
|
|
</ul>
|
|
<?php } ?>
|
|
|
|
<?php if (isset($search_list))
|
|
{ ?>
|
|
<div class="title"> <h2 class="edit">搜索结果</h2></div>
|
|
<ul class="newedit">
|
|
<?php foreach ($search_list as $key => $item)
|
|
{ ?>
|
|
<li><span class="num"><?php echo sprintf('%02d', $key + 1) ?>. </span><span><?php echo $item->ic_url_title ?></span> <span class="fR">[<?php echo GetAreaName($item->ic_ht_area_type,
|
|
$item->ic_ht_area_id); ?>] <?php echo $item->ic_datetime ?> <a href="<?php echo site_url('information/edit/' . $item->is_id); ?>" target="_blank" >编辑</a></span></li>
|
|
<?php } ?>
|
|
</ul>
|
|
<?php } ?>
|
|
|
|
<?php if (isset($cityList))
|
|
{ ?>
|
|
<div class="title"> <h2>城市列表</h2></div>
|
|
<ul class="city">
|
|
<?php for ($i = 65; $i <= 90; $i++)
|
|
{ ?>
|
|
<li><label><?php echo chr($i); ?></label>
|
|
<?php
|
|
foreach ($cityList as $item)
|
|
{
|
|
if (substr($item->CII_Code, 0, 1) == chr($i))
|
|
{
|
|
?>
|
|
<a href="<?php echo site_url('city/' . $item->CII_SN); ?>"><?php echo $item->CII2_Name; ?></a>
|
|
<?php
|
|
}
|
|
}
|
|
}
|
|
?>
|
|
</ul>
|
|
<?php } ?>
|
|
|
|
|
|
|
|
<?php
|
|
if (isset($seo_form_view))
|
|
{
|
|
echo $seo_form_view;
|
|
}
|
|
?>
|
|
|
|
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|