summaryrefslogtreecommitdiff
path: root/app/layout/aside_flux.phtml
blob: 1e3211886c0d93929a7d6d3afd63aa297c71ceea (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<div class="aside aside_flux" id="aside_flux">
	<a class="toggle_aside" href="#close"><?php echo FreshRSS_Themes::icon('close'); ?></a>

	<ul class="categories">
		<?php if ($this->loginOk) { ?>
		<li>
			<div class="stick">
				<a class="btn btn-important" href="<?php echo _url ('configure', 'feed'); ?>"><?php echo Minz_Translate::t ('subscription_management'); ?></a>
				<a class="btn btn-important" href="<?php echo _url ('configure', 'categorize'); ?>" title="<?php echo Minz_Translate::t ('categories_management'); ?>"><?php echo FreshRSS_Themes::icon('category-white'); ?></a>
			</div>
		</li>
		<?php } elseif (Minz_Configuration::needsLogin()) { ?>
		<li><a href="<?php echo _url ('index', 'about'); ?>"><?php echo Minz_Translate::t ('about_freshrss'); ?></a></li>
		<?php } ?>

		<?php
			$arUrl = array('c' => 'index', 'a' => 'index', 'params' => array());
			if ($this->conf->view_mode !== Minz_Request::param('output', 'normal')) {
				$arUrl['params']['output'] = 'normal';
			}
		?>
		<li>
			<div class="category all">
				<a data-unread="<?php echo $this->nb_not_read; ?>" class="btn<?php echo $this->get_c == 'a' ? ' active' : ''; ?>" href="<?php echo Minz_Url::display($arUrl); ?>">
					<?php echo FreshRSS_Themes::icon('all'); ?>
					<?php echo Minz_Translate::t ('main_stream'); ?>
				</a>
			</div>
		</li>

		<li>
			<div class="category favorites">
				<a data-unread="<?php echo $this->nb_favorites['unread']; ?>" class="btn<?php echo $this->get_c == 's' ? ' active' : ''; ?>" href="<?php $arUrl['params']['get'] = 's'; echo Minz_Url::display($arUrl); ?>">
					<?php echo FreshRSS_Themes::icon('bookmark'); ?>
					<?php echo Minz_Translate::t ('favorite_feeds', $this->nb_favorites['all']); ?>
				</a>
			</div>
		</li>

		<?php
		foreach ($this->cat_aside as $cat) {
			$feeds = $cat->feeds ();
			if (!empty ($feeds)) {
				?><li><?php
				$c_active = false;
				if ($this->get_c == $cat->id ()) {
					$c_active = true;
				}
				?><div class="category stick<?php echo $c_active ? ' active' : ''; ?>"><?php
					?><a data-unread="<?php echo $cat->nbNotRead (); ?>" class="btn<?php echo $c_active ? ' active' : ''; ?>" href="<?php $arUrl['params']['get'] = 'c_' . $cat->id(); echo Minz_Url::display($arUrl); ?>"><?php echo $cat->name (); ?></a><?php
					?><a class="btn dropdown-toggle" href="#"><?php echo FreshRSS_Themes::icon($c_active ? 'up' : 'down'); ?></a><?php
				?></div><?php
				?><ul class="feeds<?php echo $c_active ? ' active' : ''; ?>"><?php
				foreach ($feeds as $feed) {
					$feed_id = $feed->id ();
					$nbEntries = $feed->nbEntries ();
					$f_active = ($this->get_f == $feed_id);
					?><li id="f_<?php echo $feed_id; ?>" class="item<?php echo $f_active ? ' active' : ''; ?><?php echo $feed->inError () ? ' error' : ''; ?><?php echo $nbEntries == 0 ? ' empty' : ''; ?>"><?php
						?><div class="dropdown"><?php
							?><div class="dropdown-target"></div><?php
							?><a class="dropdown-toggle" data-fweb="<?php echo $feed->website (); ?>"><?php echo FreshRSS_Themes::icon('configure'); ?></a><?php
							/* feed_config_template */
						?></div><?php
						?> <img class="favicon" src="<?php echo $feed->favicon (); ?>" alt="✇" /> <?php
						?><a class="feed" data-unread="<?php echo $feed->nbNotRead (); ?>" data-priority="<?php echo $feed->priority (); ?>" href="<?php $arUrl['params']['get'] = 'f_' . $feed_id; echo Minz_Url::display($arUrl); ?>"><?php echo $feed->name(); ?></a><?php
					?></li><?php
				}
				?></ul><?php
				?></li><?php
			}
		} ?>
	</ul>
	<span class="aside_flux_ender"><!-- For fixed menu --></span>
</div>

<script id="feed_config_template" type="text/html">
	<ul class="dropdown-menu">
		<li class="dropdown-close"><a href="#close">❌</a></li>
		<li class="item"><a href="<?php echo _url ('index', 'index', 'get', 'f_!!!!!!'); ?>"><?php echo Minz_Translate::t ('filter'); ?></a></li>
		<li class="item"><a target="_blank" href="http://example.net/"><?php echo Minz_Translate::t ('see_website'); ?></a></li>
		<?php if ($this->loginOk) { ?>
		<li class="separator"></li>
		<li class="item"><a href="<?php echo _url ('configure', 'feed', 'id', '!!!!!!'); ?>"><?php echo Minz_Translate::t ('administration'); ?></a></li>
		<li class="item"><a href="<?php echo _url ('feed', 'actualize', 'id', '!!!!!!'); ?>"><?php echo Minz_Translate::t ('actualize'); ?></a></li>
		<li class="item"><a href="<?php echo _url ('entry', 'read', 'get', 'f_!!!!!!'); ?>"><?php echo Minz_Translate::t ('mark_read'); ?></a></li>
		<?php } ?>
	</ul>
</script>