添加元数据标题显示
This commit is contained in:
parent
298f038b47
commit
234a61963e
|
@ -1086,14 +1086,16 @@ class AuthorController extends Zend_Controller_Action
|
||||||
$uuid = $this->_request->getParam('uuid');
|
$uuid = $this->_request->getParam('uuid');
|
||||||
if(preg_match("/^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$/",$uuid))
|
if(preg_match("/^[0-9A-Za-z]{8}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{4}-[0-9A-Za-z]{12}$/",$uuid))
|
||||||
{
|
{
|
||||||
$sql = "SELECT c.author,c.email,c.url,c.ts_created,c.content FROM comments c
|
$sql = "SELECT c.author,c.email,c.url,c.ts_created,c.content,m.title FROM comments c
|
||||||
LEFT JOIN mdauthor a ON a.uuid=c.uuid
|
LEFT JOIN mdauthor a ON a.uuid=c.uuid
|
||||||
|
left join metadata m on m.uuid=c.uuid
|
||||||
WHERE c.uuid=? AND a.userid=?
|
WHERE c.uuid=? AND a.userid=?
|
||||||
ORDER BY ts_created DESC";
|
ORDER BY ts_created DESC";
|
||||||
|
|
||||||
$sth = $this->db->prepare($sql);
|
$sth = $this->db->prepare($sql);
|
||||||
$sth->execute(array($uuid,$u_id));
|
$sth->execute(array($uuid,$u_id));
|
||||||
$rows = $sth->fetchAll();
|
$rows = $sth->fetchAll();
|
||||||
|
@$this->view->mdtitle=$rows[0]['title'];
|
||||||
|
|
||||||
$paginator = Zend_Paginator::factory($rows);
|
$paginator = Zend_Paginator::factory($rows);
|
||||||
$paginator->setCurrentPageNumber($this->_getParam('page'));
|
$paginator->setCurrentPageNumber($this->_getParam('page'));
|
||||||
|
|
|
@ -28,6 +28,7 @@ $this->breadcrumb()->setSeparator(' > ');
|
||||||
<div id="datalist">
|
<div id="datalist">
|
||||||
<?php
|
<?php
|
||||||
if (count($this->paginator)):
|
if (count($this->paginator)):
|
||||||
|
echo "<h2>数据标题:".$this->mdtitle."</h2>";
|
||||||
echo "<ul>";
|
echo "<ul>";
|
||||||
$autoindex=0;
|
$autoindex=0;
|
||||||
foreach ($this->paginator as $item):
|
foreach ($this->paginator as $item):
|
||||||
|
|
Loading…
Reference in New Issue