summaryrefslogtreecommitdiffstats
path: root/templates/part.listfeed.php
blob: 6aabe5d3c3989106abe87e739d4e59103b9ca4bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

$l = new OC_l10n('news');

$child = isset($_['child']) ? $_['child'] : null;
$unreadItems = isset($_['unreadItems']) ? $_['unreadItems'] : null;
$favicon = $child->getFavicon();
if ($favicon == null) {
        $favicon = OCP\Util::imagePath('news', 'rss.svg');
}

echo '<li class="feeds_list" data-id="' . $child->getId() . '">';
echo '<a href="' . OCP\Util::linkTo('news', 'index.php'). '?feedid=' . $child->getId() . '" style="background: url(' . $favicon . ') left center no-repeat; background-size:16px 16px;">' . $child->getTitle() .'</a>';
if ($unreadItems > 0) {
	echo '<span id="unreaditemcounter" class="nonzero">' . $unreadItems . '</span>';
}
else {
	echo '<span id="unreaditemcounter" class="zero"></span>';
}
echo '<button class="svg action" id="feeds_edit" title="' . $l->t('Edit feed') . '"></button>';
echo '<button class="svg action" id="feeds_delete" onClick="(News.Feed.delete(' . $child->getId(). '))" title="' . $l->t('Delete feed') . '"></button>';
echo '</li>';