summaryrefslogtreecommitdiffstats
path: root/templates/part.listfolder.php
blob: cf6a1c5e1a0e34eaba912bf792e6badcd9d42737 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php

$l = new OC_l10n('news');

if(isset($_['mock'])){
	$folderId = -1;
	$folderName = '';
} else {
	$folder = isset($_['folder']) ? $_['folder'] : null;	
	$folderId = $folder->getId();
	$folderName = $folder->getName();
}

$mockClass = isset($_['mock']) ? 'mock' : '';

echo '<li class="folder open ' . $mockClass . '" data-id="' . $folderId . '">';
	echo '<button class="collapsable_trigger" title="' . $l->t('Collapse') . '"></button>';
	echo '<a href="#" class="title">' . $folderName .	'</a>';
	echo '<span class="buttons">';
		echo '<button class="svg action feeds_delete" title="' . $l->t('Delete folder') . '"></button>';
		echo '<button class="svg action feeds_edit" title="' . $l->t('Rename folder') . '"></button>';
		echo '<button class="svg action feeds_markread" title="' . $l->t('Mark all read') . '"></button>';
	echo '</span>';
	echo '<ul data-id="' . $folderId . '">';

if(isset($_['mock'])){
	echo '</ul>';
}