|
@@ -6,9 +6,8 @@ use Dever;
|
|
|
|
|
|
class Article
|
|
|
{
|
|
|
- public $uid;
|
|
|
# 根据文章id 获取文章信息
|
|
|
- public function get($data)
|
|
|
+ public function get($data, $uid = false)
|
|
|
{
|
|
|
if (!is_array($data)) {
|
|
|
$data = Dever::db('content/article')->getOne($data);
|
|
@@ -18,12 +17,12 @@ class Article
|
|
|
Dever::alert('错误的文章信息');
|
|
|
}
|
|
|
|
|
|
- $data = $this->getContent($data);
|
|
|
+ $data = $this->getContent($data, $uid);
|
|
|
|
|
|
return $data;
|
|
|
}
|
|
|
|
|
|
- public function getContent($data)
|
|
|
+ public function getContent($data, $uid = false)
|
|
|
{
|
|
|
//embed
|
|
|
$data['content_array'] = array();
|
|
@@ -141,8 +140,8 @@ class Article
|
|
|
|
|
|
if ($type == 3) {
|
|
|
# 查看是否有预约
|
|
|
- if ($this->uid > 0) {
|
|
|
- $info['user_act']['note'] = Dever::load('act/lib/note')->get($this->uid, $v, $type);
|
|
|
+ if ($uid > 0) {
|
|
|
+ $info['user_act']['note'] = Dever::load('act/lib/note')->get($uid, $v, $type);
|
|
|
} else {
|
|
|
$info['user_act']['note'] = 2;
|
|
|
}
|