mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 05:15:55 +00:00
move the following to Article:
+ static function format_article_enclosures($id, $always_display_enclosures,
+ static function format_article($id, $mark_as_read = true, $zoom_mode = false, $owner_uid = false) {
+ static function get_article_tags($id, $owner_uid = 0, $tag_cache = false) {
+ static function format_tags_string($tags) {
+ static function format_article_labels($labels) {
+ static function format_article_note($id, $note, $allow_edit = true) {
+ static function get_article_enclosures($id) {
This commit is contained in:
@@ -166,14 +166,14 @@ class Handler_Public extends Handler {
|
||||
$tpl->setVariable('ARTICLE_SOURCE_LINK', htmlspecialchars($line['site_url'] ? $line["site_url"] : get_self_url_prefix()), true);
|
||||
$tpl->setVariable('ARTICLE_SOURCE_TITLE', htmlspecialchars($line['feed_title'] ? $line['feed_title'] : $feed_title), true);
|
||||
|
||||
$tags = get_article_tags($line["id"], $owner_uid);
|
||||
$tags = Article::get_article_tags($line["id"], $owner_uid);
|
||||
|
||||
foreach ($tags as $tag) {
|
||||
$tpl->setVariable('ARTICLE_CATEGORY', htmlspecialchars($tag), true);
|
||||
$tpl->addBlock('category');
|
||||
}
|
||||
|
||||
$enclosures = get_article_enclosures($line["id"]);
|
||||
$enclosures = Article::get_article_enclosures($line["id"]);
|
||||
|
||||
foreach ($enclosures as $e) {
|
||||
$type = htmlspecialchars($e['content_type']);
|
||||
@@ -252,7 +252,7 @@ class Handler_Public extends Handler {
|
||||
}
|
||||
}
|
||||
|
||||
$enclosures = get_article_enclosures($line["id"]);
|
||||
$enclosures = Article::get_article_enclosures($line["id"]);
|
||||
|
||||
if (count($enclosures) > 0) {
|
||||
$article['enclosures'] = array();
|
||||
@@ -402,7 +402,7 @@ class Handler_Public extends Handler {
|
||||
$id = $this->dbh->fetch_result($result, 0, "ref_id");
|
||||
$owner_uid = $this->dbh->fetch_result($result, 0, "owner_uid");
|
||||
|
||||
$article = format_article($id, false, true, $owner_uid);
|
||||
$article = Article::format_article($id, false, true, $owner_uid);
|
||||
|
||||
print_r($article['content']);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user