add series with place keyword support, and simple search suppport
This commit is contained in:
parent
58f5934475
commit
4a1fd699ac
|
@ -85,10 +85,14 @@ routes.datacat.defaults.controller = "data"
|
||||||
routes.datacat.defaults.action = "category"
|
routes.datacat.defaults.action = "category"
|
||||||
routes.datacat.reqs.code = "\d+"
|
routes.datacat.reqs.code = "\d+"
|
||||||
|
|
||||||
|
routes.dataseriesplace.route = "data/series/:id/:keyword"
|
||||||
|
routes.dataseriesplace.defaults.controller = "data"
|
||||||
|
routes.dataseriesplace.defaults.action = "series"
|
||||||
|
//routes.dataseries.reqs.code = "\d+"
|
||||||
|
|
||||||
routes.dataseries.route = "data/series/:id"
|
routes.dataseries.route = "data/series/:id"
|
||||||
routes.dataseries.defaults.controller = "data"
|
routes.dataseries.defaults.controller = "data"
|
||||||
routes.dataseries.defaults.action = "series"
|
routes.dataseries.defaults.action = "series"
|
||||||
//routes.dataseries.reqs.code = "\d+"
|
|
||||||
|
|
||||||
routes.mddoc.route = "metainfo/:title"
|
routes.mddoc.route = "metainfo/:title"
|
||||||
routes.mddoc.defaults.controller = "metainfo"
|
routes.mddoc.defaults.controller = "metainfo"
|
||||||
|
|
|
@ -242,6 +242,7 @@ class DataController extends Zend_Controller_Action
|
||||||
$name=$id;
|
$name=$id;
|
||||||
$id='';
|
$id='';
|
||||||
}
|
}
|
||||||
|
$keyword=$this->_request->getParam('keyword');
|
||||||
$md=new SeriesTable();
|
$md=new SeriesTable();
|
||||||
$db=$md->getAdapter();
|
$db=$md->getAdapter();
|
||||||
if (empty($id)) {
|
if (empty($id)) {
|
||||||
|
@ -269,14 +270,27 @@ class DataController extends Zend_Controller_Action
|
||||||
$where=$db->quoteInto('id = ?',$id);
|
$where=$db->quoteInto('id = ?',$id);
|
||||||
$row=$md->fetchRow($where);
|
$row=$md->fetchRow($where);
|
||||||
$this->view->codename=$row->name;
|
$this->view->codename=$row->name;
|
||||||
$sql=$db->quoteInto('select count(m.id) as count from metadata m,dataseries d where m.id=d.id and d.sid=?',$id);
|
if (!empty($keyword))
|
||||||
$state=$db->query($sql);
|
{
|
||||||
$row=$state->fetchAll();
|
$sql='select count(m.id) as count from metadata m,dataseries d,keyword k where m.id=d.id and m.id=k.id and d.sid=? and k.keyword=?';
|
||||||
|
$row=$db->fetchAll($sql,array($id,$keyword));
|
||||||
|
}else{
|
||||||
|
$sql='select count(m.id) as count from metadata m,dataseries d where m.id=d.id and d.sid=?';
|
||||||
|
$row=$db->fetchAll($sql,array($id));
|
||||||
|
}
|
||||||
$sum=$row[0]['count'];
|
$sum=$row[0]['count'];
|
||||||
$select=$db->select();
|
$select=$db->select();
|
||||||
$select->from('metadata','*')->join('dataseries','metadata.id=dataseries.id')->where('dataseries.sid=?',$id)->order('metadata.title')->limitPage($page,$limit);
|
$select->from('metadata','*')->join('dataseries','metadata.id=dataseries.id')->where('dataseries.sid=?',$id)->order('metadata.title')->limitPage($page,$limit);
|
||||||
|
if (!empty($keyword)) $select->join('keyword','keyword.id=metadata.id')->where('keyword.keyword=?',$keyword);
|
||||||
$this->view->metadata=$db->fetchAll($select);
|
$this->view->metadata=$db->fetchAll($select);
|
||||||
$this->view->page=new Pagination($sum,$page,$limit);
|
$this->view->page=new Pagination($sum,$page,$limit);
|
||||||
|
$this->view->showtools=($sum>$page)?true:false;
|
||||||
|
$this->view->form=new SearchForm();
|
||||||
|
$sql=$db->quoteInto("select keyword,count(*) as count from (select t.keyword,t.id from keyword t left join dataseries d on t.id=d.id where t.keytype='place' and d.sid=?) as f group by keyword order by count desc limit 30",$id);
|
||||||
|
$state=$db->query($sql);
|
||||||
|
$row=$state->fetchAll();
|
||||||
|
$this->view->places=$row;
|
||||||
|
$this->view->seriesid=$id;
|
||||||
} else {
|
} else {
|
||||||
//提供全部数据集序列列表
|
//提供全部数据集序列列表
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,10 +21,21 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<li><a href='/data/series/<?php echo $cg['name']; ?>'><?php echo $cg['name']; ?></a>(<?php echo $cg['count']; ?>)</li>
|
<li><a href='/data/series/<?php echo $cg['name']; ?>'><?php echo $cg['name']; ?></a>(<?php echo $cg['count']; ?>)</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
</ul></fieldset>
|
</ul></fieldset>
|
||||||
|
<?php if ($this->showtools) : ?>
|
||||||
|
<fieldset><legend>本序列中常用地点关键词</legend>
|
||||||
|
<ul>
|
||||||
|
<?php foreach($this->places as $place) : ?>
|
||||||
|
<li><a href='/data/series/<?php echo $this->seriesid; ?>/<?php echo urlencode($place['keyword']); ?>'><?php echo $place['keyword']; ?></a><span class="note">(<?php echo $place['count']; ?>)</span></li>
|
||||||
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
|
</fieldset>
|
||||||
|
<?php endif; ?>
|
||||||
</div>
|
</div>
|
||||||
<?php if (!empty($this->metadata)) : ?>
|
<?php if (!empty($this->metadata)) : ?>
|
||||||
<div id='metacontent'>
|
<div id='metacontent'>
|
||||||
<h1>当前浏览数据集序列:<?php echo $this->codename; ?></h1><?php echo $this->page->getNavigation(); ?>
|
<h1>当前浏览数据集序列:<?php echo $this->codename; ?></h1>
|
||||||
|
<?php if ($this->showtools) echo $this->form; ?>
|
||||||
|
<?php echo $this->page->getNavigation(); ?>
|
||||||
<?php foreach($this->metadata as $md) : ?>
|
<?php foreach($this->metadata as $md) : ?>
|
||||||
<hr />
|
<hr />
|
||||||
<div class="mditem">
|
<div class="mditem">
|
||||||
|
|
Loading…
Reference in New Issue