This commit is contained in:
Gregor Tätzner 2012-08-02 23:00:14 +02:00
Родитель bdc5159324
Коммит 1117a19bb6
2 изменённых файлов: 31 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,18 @@
<?php
// FIXME: somehow gets included twice
include_once("part.itemcounter.php");
$child = isset($_['child']) ? $_['child'] : null;
$favicon = $child->getFavicon();
if ($favicon == null) {
$favicon = OCP\Util::imagePath('news', 'rss.svg');
}
echo '<li class="feeds_list" data-id="' . $child->getId() . '"><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>';
countUnreadItems($child->getId());
echo '<button class="svg action" id="feeds_delete" onClick="(News.Feed.delete(' . $child->getId(). '))" title="' . $l->t('Delete feed') . '"></button>';
echo '<button class="svg action" id="feeds_edit" title="' . $l->t('Edit feed') . '"></button>';
echo '</li>';
?>

Просмотреть файл

@ -0,0 +1,13 @@
<?php
echo '<ul class="folders"' . (($depth == 0) ? 'style="margin-left: 0px !important;"' : '') .'> <li class="folder_list" >' .
'<div class="collapsable_container" data-id="' . $folder->getId() . '">' .
'<div class="collapsable" >' . strtoupper($folder->getName()) .
( ($depth != 0) ?
'<button class="svg action" id="feeds_delete" onClick="(News.Folder.delete(' . $folder->getId(). '))" title="' . $l->t('Delete folder') . '"></button>' .
'<button class="svg action" id="feeds_edit" title="' . $l->t('Rename folder') . '"></button>'
: '' ) .
'</div>' .
'<ul>';
?>