|
|
|
@ -28,8 +28,7 @@ class blog extends common {
|
|
|
|
|
'delete' => self::GROUP_MODERATOR,
|
|
|
|
|
'edit' => self::GROUP_MODERATOR,
|
|
|
|
|
'index' => self::GROUP_VISITOR,
|
|
|
|
|
'rss' => self::GROUP_VISITOR,
|
|
|
|
|
'signature' => self::GROUP_VISITOR
|
|
|
|
|
'rss' => self::GROUP_VISITOR
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
public static $articles = [];
|
|
|
|
@ -134,6 +133,12 @@ class blog extends common {
|
|
|
|
|
$newsArticle->setAuthor($author,'no@mail.com');
|
|
|
|
|
$newsArticle->setId(helper::baseUrl() .$this->getUrl(0) . '/' . $articleId);
|
|
|
|
|
$newsArticle->setDate(date('r', $this->getData(['module', $this->getUrl(0), 'posts', $articleId, 'publishedOn'])));
|
|
|
|
|
if ($this->_mime_content_type(helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb) !== false) {
|
|
|
|
|
$newsArticle->addEnclosure( helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb,
|
|
|
|
|
getimagesize(helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb),
|
|
|
|
|
$this->_mime_content_type(helper::baseUrl(false) . self::FILE_DIR . 'thumb/' . $thumb)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
$feeds->addItem($newsArticle);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -748,5 +753,15 @@ class blog extends common {
|
|
|
|
|
return $this->getData(['user', $userId, 'firstname']);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private function _mime_content_type($filename) {
|
|
|
|
|
$result = new finfo();
|
|
|
|
|
|
|
|
|
|
if (is_resource($result) === true) {
|
|
|
|
|
return $result->file($filename, FILEINFO_MIME_TYPE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|