summaryrefslogtreecommitdiff
path: root/classes/digest.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-03-02 17:57:25 +0300
committerAndrew Dolgov <[email protected]>2019-03-02 17:57:25 +0300
commitda1b3e3ba151945eb8574b37d4f0231335c9faee (patch)
treefc1dcdf1cdc6f2927cf7aded79880556f0e0f4f7 /classes/digest.php
parenta130da2d1abfffad1e25117d436252660847ba09 (diff)
digest: add ARTICLE_LABELS
Diffstat (limited to 'classes/digest.php')
-rw-r--r--classes/digest.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/classes/digest.php b/classes/digest.php
index 0d2cac77e..68a14ef68 100644
--- a/classes/digest.php
+++ b/classes/digest.php
@@ -166,6 +166,15 @@ class Digest
$line['feed_title'] = $line['cat_title'] . " / " . $line['feed_title'];
}
+ $article_labels = Article::get_article_labels($line["ref_id"], $user_id);
+ $article_labels_formatted = "";
+
+ if (is_array($article_labels) && count($article_labels) > 0) {
+ $article_labels_formatted = implode(", ", array_map(function($a) {
+ return $a[1];
+ }, $article_labels));
+ }
+
$tpl->setVariable('FEED_TITLE', $line["feed_title"]);
$tpl->setVariable('ARTICLE_TITLE', $line["title"]);
$tpl->setVariable('ARTICLE_LINK', $line["link"]);
@@ -174,6 +183,7 @@ class Digest
truncate_string(strip_tags($line["content"]), 300));
// $tpl->setVariable('ARTICLE_CONTENT',
// strip_tags($article_content));
+ $tpl->setVariable('ARTICLE_LABELS', $article_labels_formatted, true);
$tpl->addBlock('article');
@@ -181,6 +191,7 @@ class Digest
$tpl_t->setVariable('ARTICLE_TITLE', $line["title"]);
$tpl_t->setVariable('ARTICLE_LINK', $line["link"]);
$tpl_t->setVariable('ARTICLE_UPDATED', $updated);
+ $tpl_t->setVariable('ARTICLE_LABELS', $article_labels_formatted, true);
// $tpl_t->setVariable('ARTICLE_EXCERPT',
// truncate_string(strip_tags($line["excerpt"]), 100));