首页 热门数据 修改为 最新数据集
This commit is contained in:
parent
d8adb0aacd
commit
24cc152742
|
@ -1,11 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
class IndexController extends Zend_Controller_Action
|
class IndexController extends Zend_Controller_Action {
|
||||||
{
|
function preDispatch () {
|
||||||
function preDispatch()
|
|
||||||
{
|
|
||||||
$this->view->config = Zend_Registry::get('config');
|
$this->view->config = Zend_Registry::get('config');
|
||||||
$this->db=Zend_Registry::get('db');
|
$this->db = Zend_Registry::get('db');
|
||||||
$this->view->theme = new Theme();
|
$this->view->theme = new Theme();
|
||||||
$this->submd = $this->view->config->sub->metadata;
|
$this->submd = $this->view->config->sub->metadata;
|
||||||
$this->subnews = $this->view->config->sub->news;
|
$this->subnews = $this->view->config->sub->news;
|
||||||
|
@ -13,53 +11,50 @@ class IndexController extends Zend_Controller_Action
|
||||||
//$this->view->main_nav_pageID = "index";
|
//$this->view->main_nav_pageID = "index";
|
||||||
}
|
}
|
||||||
|
|
||||||
function indexAction()
|
function indexAction () {
|
||||||
{
|
|
||||||
//统计数据
|
//统计数据
|
||||||
$sql="select (select count(*) from users) as usernum,(select count(*) from {$this->submd}) as metanum,
|
$sql = "select (select count(*) from users) as usernum,(select count(*) from {$this->submd}) as metanum,
|
||||||
(select count(distinct d.uuid) from dataorder d left join offlineapp f on d.offlineappid=f.id where d.uuid in (select uuid from meteorologymd) and d.ts_approved is not null and d.status in (0,5) ) as offlinenum,
|
(select count(distinct d.uuid) from dataorder d left join offlineapp f on d.offlineappid=f.id where d.uuid in (select uuid from meteorologymd) and d.ts_approved is not null and d.status in (0,5) ) as offlinenum,
|
||||||
(select count(*) from datavisual where uuid in (select uuid from {$this->submd}) and status=1) as visualnum";
|
(select count(*) from datavisual where uuid in (select uuid from {$this->submd}) and status=1) as visualnum";
|
||||||
$row=$this->db->fetchRow($sql);
|
$row = $this->db->fetchRow($sql);
|
||||||
$this->view->usernum=$row['usernum'];
|
$this->view->usernum = $row['usernum'];
|
||||||
$this->view->metanum=$row['metanum'];
|
$this->view->metanum = $row['metanum'];
|
||||||
$this->view->offlinenum=$row['offlinenum'];
|
$this->view->offlinenum = $row['offlinenum'];
|
||||||
$this->view->visualnum=$row['visualnum'];
|
$this->view->visualnum = $row['visualnum'];
|
||||||
/*$sql='select count(*) from metadata';
|
/*$sql='select count(*) from metadata';
|
||||||
$row=$this->db->fetchRow($sql);
|
$row=$this->db->fetchRow($sql);
|
||||||
$this->view->metanum=$row['count'];*/
|
$this->view->metanum=$row['count'];*/
|
||||||
$sql="select sum(filesize) as sum,datatype from {$this->submd} group by datatype";
|
$sql = "select sum(filesize) as sum,datatype from {$this->submd} group by datatype";
|
||||||
$rows=$this->db->fetchAll($sql);
|
$rows = $this->db->fetchAll($sql);
|
||||||
foreach($rows as $row)
|
foreach ($rows as $row) {
|
||||||
{
|
if ($row['datatype']) $this->view->offlinesize = $row['sum']; else
|
||||||
if ($row['datatype'])
|
$this->view->onlinesize = $row['sum'];
|
||||||
$this->view->offlinesize=$row['sum'];
|
|
||||||
else
|
|
||||||
$this->view->onlinesize=$row['sum'];
|
|
||||||
}
|
}
|
||||||
//下载最多数据(top 5)
|
//下载最多数据(top 5)
|
||||||
$sql="select uuid,title,id from {$this->submd} where id in (select m.id from {$this->submd} m left join dataorder d on m.uuid=d.uuid where m.datatype=0 group by m.id order by count(d.uuid) desc limit 5)";
|
$sql = "select uuid,title,id from {$this->submd} where id in (select m.id from {$this->submd} m left join dataorder d on m.uuid=d.uuid where m.datatype=0 group by m.id order by count(d.uuid) desc limit 5)";
|
||||||
|
//最新数据
|
||||||
|
$sql = "select id,uuid,title,ts_created from {$this->submd} order by ts_created desc limit 5";
|
||||||
$this->db->setFetchMode(Zend_Db::FETCH_BOTH);
|
$this->db->setFetchMode(Zend_Db::FETCH_BOTH);
|
||||||
$this->view->mdtop=$this->db->fetchAll($sql);
|
$this->view->mdtop = $this->db->fetchAll($sql);
|
||||||
$sql="select uuid,title,id from {$this->submd} where id in (select m.id from {$this->submd} m left join dataorder d on m.uuid=d.uuid where m.datatype=1 group by m.id order by count(d.uuid) desc limit 5)";
|
$sql = "select uuid,title,id from {$this->submd} where id in (select m.id from {$this->submd} m left join dataorder d on m.uuid=d.uuid where m.datatype=1 group by m.id order by count(d.uuid) desc limit 5)";
|
||||||
$this->view->offlinemdtop=$this->db->fetchAll($sql);
|
$this->view->offlinemdtop = $this->db->fetchAll($sql);
|
||||||
$sql="select m.uuid,m.title,m.id,m.description from {$this->submd} m left join thumbnail t on m.id=t.id where length(t.data)>2 order by random()";
|
$sql = "select m.uuid,m.title,m.id,m.description from {$this->submd} m left join thumbnail t on m.id=t.id where length(t.data)>2 order by random()";
|
||||||
$this->view->mdrandom=$this->db->fetchRow($sql);
|
$this->view->mdrandom = $this->db->fetchRow($sql);
|
||||||
//搜索
|
//搜索
|
||||||
$this->view->addHelperPath('helper','Zend_View_Helper_');
|
$this->view->addHelperPath('helper', 'Zend_View_Helper_');
|
||||||
$searchform=new SearchForm();
|
$searchform = new SearchForm();
|
||||||
//$searchform->removeElement('submit');
|
//$searchform->removeElement('submit');
|
||||||
$this->view->searchform=$searchform;
|
$this->view->searchform = $searchform;
|
||||||
|
|
||||||
$News = new Archive($this->db);
|
$News = new Archive($this->db);
|
||||||
|
|
||||||
$time = date("Y-m-d H:i:s",time());
|
$time = date("Y-m-d H:i:s", time());
|
||||||
$sql = "SELECT * FROM archive WHERE is_pub=true and sub='$this->subnews' AND ts_published<'$time' AND image!=''
|
$sql = "SELECT * FROM archive WHERE is_pub=true and sub='$this->subnews' AND ts_published<'$time' AND image!=''
|
||||||
and id in (select ar_catalog.aid from ar_category left join ar_catalog on ar_category.id=ar_catalog.cid where ar_category.code='featured') order by ts_published desc LIMIT 5";
|
and id in (select ar_catalog.aid from ar_category left join ar_catalog on ar_category.id=ar_catalog.cid where ar_category.code='featured') order by ts_published desc LIMIT 5";
|
||||||
$sth = $this->db->query($sql);
|
$sth = $this->db->query($sql);
|
||||||
$rows = $sth->fetchAll(PDO::FETCH_BOTH);
|
$rows = $sth->fetchAll(PDO::FETCH_BOTH);
|
||||||
|
|
||||||
foreach($rows as $k=>$v)
|
foreach ($rows as $k => $v) {
|
||||||
{
|
|
||||||
$url = $News->getArchiveUrlByCid($v['id']);
|
$url = $News->getArchiveUrlByCid($v['id']);
|
||||||
$rows[$k]['url'] = $url['archive_url'];
|
$rows[$k]['url'] = $url['archive_url'];
|
||||||
}
|
}
|
||||||
|
@ -73,8 +68,7 @@ class IndexController extends Zend_Controller_Action
|
||||||
$sth = $this->db->query($sql);
|
$sth = $this->db->query($sql);
|
||||||
$rows = $sth->fetchAll(PDO::FETCH_BOTH);
|
$rows = $sth->fetchAll(PDO::FETCH_BOTH);
|
||||||
|
|
||||||
foreach($rows as $k=>$v)
|
foreach ($rows as $k => $v) {
|
||||||
{
|
|
||||||
$url = $News->getArchiveUrlByCid($v['id']);
|
$url = $News->getArchiveUrlByCid($v['id']);
|
||||||
$rows[$k]['url'] = $url['archive_url'];
|
$rows[$k]['url'] = $url['archive_url'];
|
||||||
$rows[$k]['type_title'] = $url['type_title'];
|
$rows[$k]['type_title'] = $url['type_title'];
|
||||||
|
@ -83,8 +77,8 @@ class IndexController extends Zend_Controller_Action
|
||||||
|
|
||||||
$this->view->list_news = $rows;
|
$this->view->list_news = $rows;
|
||||||
|
|
||||||
$sql="select * from $this->submd where uuid in (select uuid from datavisual) order by ts_created desc limit 5";
|
$sql = "select * from $this->submd where uuid in (select uuid from datavisual) order by ts_created desc limit 5";
|
||||||
$sth=$this->db->query($sql);
|
$sth = $this->db->query($sql);
|
||||||
$this->view->visualdata = $sth->fetchAll(PDO::FETCH_BOTH);
|
$this->view->visualdata = $sth->fetchAll(PDO::FETCH_BOTH);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,23 +1,21 @@
|
||||||
<?php
|
<?php
|
||||||
$this->headTitle($this->config->title->site);
|
$this->headTitle($this->config->title->site);
|
||||||
$this->headTitle('首页');
|
$this->headTitle('首页');
|
||||||
$this->headTitle()->setSeparator(' - ');
|
$this->headTitle()->setSeparator(' - ');
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</div><!-- 结束container容器,实现banner全屏展示-->
|
</div>
|
||||||
<!-- Carousel
|
|
||||||
================================================== -->
|
|
||||||
<div class="container-fluid1 ">
|
<div class="container-fluid1 ">
|
||||||
<div id="myCarousel" class="carousel slide">
|
<div id="myCarousel" class="carousel slide">
|
||||||
<div class="carousel-inner">
|
<div class="carousel-inner">
|
||||||
<div class="item active"> <img src="/sjyportal/img/slide-00.jpg" alt="" class="">
|
<div class="item active"><img src="/sjyportal/img/slide-00.jpg" alt="" class="">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="carousel-caption">
|
<div class="carousel-caption">
|
||||||
<h2>青海54.6%国土被纳入三江源国家生态保护试验区</h2>
|
<h2>青海54.6%国土被纳入三江源国家生态保护试验区</h2>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="item"> <img src="/sjyportal/img/slide-01.jpg" alt="" class="">
|
<div class="item"><img src="/sjyportal/img/slide-01.jpg" alt="" class="">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<div class="carousel-caption">
|
<div class="carousel-caption">
|
||||||
<h2>青海54.6%国土被纳入三江源国家生态保护试验区</h2>
|
<h2>青海54.6%国土被纳入三江源国家生态保护试验区</h2>
|
||||||
|
@ -26,13 +24,11 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a> <a class="right carousel-control" href="#myCarousel" data-slide="next">›</a> </div>
|
<a class="left carousel-control" href="#myCarousel" data-slide="prev">‹</a>
|
||||||
|
<a class="right carousel-control" href="#myCarousel" data-slide="next">›</a></div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.carousel -->
|
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<!-- Three columns of text below the carousel -->
|
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
<div class="span12">
|
<div class="span12">
|
||||||
<div class="span3">
|
<div class="span3">
|
||||||
|
@ -47,36 +43,32 @@
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.span4 -->
|
|
||||||
<div class="span9">
|
<div class="span9">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<h4 class="box-title">新闻公告</h4>
|
<h4 class="box-title">新闻公告</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($this->list_news as $k=>$v){ ?>
|
<?php foreach ($this->list_news as $k => $v) { ?>
|
||||||
<li>
|
<li>
|
||||||
[<?= date('Y-m-d',strtotime($v['ts_published'])) ?>]<a href="<?= $v['url'] ?>" title="<?= $v['title'] ?>"><i class=" icon-ok-sign"> </i><?= $v['title'] ?></a>
|
[<?= date('Y-m-d', strtotime($v['ts_published'])) ?>]<a href="<?= $v['url'] ?>"
|
||||||
|
title="<?= $v['title'] ?>"><i
|
||||||
|
class=" icon-ok-sign"> </i><?= $v['title'] ?></a>
|
||||||
</li>
|
</li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<span class="pull-right"><a href="/archives/" target="_blank" class="more">更多>></a></span>
|
<span class="pull-right"><a href="/archives/" target="_blank" class="more">更多>></a></span>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.span4 -->
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- /.row -->
|
<div style="margin-bottom:20px;"><img src="/sjyportal/img/protect.jpg" class="img-rounded"/></div>
|
||||||
<div style="margin-bottom:20px;"><img src="/sjyportal/img/protect.jpg" class="img-rounded" /></div>
|
|
||||||
|
|
||||||
<!-- Three columns of text below the carousel -->
|
|
||||||
<div class="row-fluid">
|
<div class="row-fluid">
|
||||||
<!-- /.span4 -->
|
|
||||||
<div class="span4">
|
<div class="span4">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<h4 class="box-title">最新可视化数据</h4>
|
<h4 class="box-title">最新可视化数据</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($this->visualdata as $k=>$v){ ?>
|
<?php foreach ($this->visualdata as $k => $v) { ?>
|
||||||
<li>
|
<li>
|
||||||
<a href="/data/<?= $v['uuid'] ?>" title="<?= $v['title'] ?>"><i class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
<a href="/data/<?= $v['uuid'] ?>" title="<?= $v['title'] ?>"><i
|
||||||
|
class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
||||||
</li>
|
</li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<span class="pull-right"><a href="/data/visual" target="_blank" class="more">更多>></a></span>
|
<span class="pull-right"><a href="/data/visual" target="_blank" class="more">更多>></a></span>
|
||||||
|
@ -85,43 +77,41 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="span4">
|
<div class="span4">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<h4 class="box-title">热门在线数据集</h4>
|
<h4 class="box-title">最新数据集</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($this->mdtop as $k=>$v){ ?>
|
<?php foreach ($this->mdtop as $k => $v) { ?>
|
||||||
<li>
|
<li>
|
||||||
<a href="/data/<?= $v['uuid'] ?>" title="<?= $v['title'] ?>"><i class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
<a href="/data/<?= $v['uuid'] ?>" title="<?= $v['title'] ?>"><i
|
||||||
|
class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
||||||
</li>
|
</li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<span class="pull-right"><a href="/data/onlinelist" target="_blank" class="more">更多>></a></span>
|
<span class="pull-right"><a href="/data/onlinelist" target="_blank" class="more">更多>></a></span>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.span4 -->
|
|
||||||
<div class="span4">
|
<div class="span4">
|
||||||
<div class="box">
|
<div class="box">
|
||||||
<h4 class="box-title">热门离线数据集</h4>
|
<h4 class="box-title">热门离线数据集</h4>
|
||||||
<ul>
|
<ul>
|
||||||
<?php foreach($this->offlinemdtop as $k=>$v){ ?>
|
<?php foreach ($this->offlinemdtop as $k => $v) { ?>
|
||||||
<li>
|
<li>
|
||||||
<a href="/data/<?= $v['uuid'] ?>" title="<?= $v['title'] ?>"><i class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
<a href="/data/<?= $v['uuid'] ?>" title="<?= $v['title'] ?>"><i
|
||||||
|
class=" icon-map-marker"> </i><?= $v['title'] ?></a>
|
||||||
</li>
|
</li>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
<span class="pull-right"><a href="/data/offlinelist" target="_blank" class="more">更多>></a></span>
|
<span class="pull-right">
|
||||||
|
<a href="/data/offlinelist" target="_blank" class="more">更多>></a>
|
||||||
|
</span>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<!-- /.span4 -->
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<!-- /.row -->
|
|
||||||
</div>
|
</div>
|
||||||
|
<script>
|
||||||
<!-- /.container -->
|
|
||||||
<script>
|
|
||||||
!function ($) {
|
!function ($) {
|
||||||
$(function(){
|
$(function () {
|
||||||
// carousel demo
|
// carousel demo
|
||||||
$('#myCarousel').carousel()
|
$('#myCarousel').carousel()
|
||||||
})
|
})
|
||||||
}(window.jQuery)
|
}(window.jQuery)
|
||||||
</script>
|
</script>
|
Loading…
Reference in New Issue