summaryrefslogtreecommitdiff
path: root/app/layout/nav_menu.phtml
blob: 3565b21b5503e5d25a2fd3160ae93f5e3b693200 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
<div class="nav_menu">
	<a class="btn toggle_aside" href="#aside_flux"><i class="icon i_category"></i></a>

	<?php if (!login_is_conf ($this->conf) || is_logged ()) { ?>
	<a id="actualize" class="btn" href="<?php echo _url ('feed', 'actualize'); ?>"><i class="icon i_refresh"></i></a>

	<?php
		$get = false;
		$string_mark = Translate::t ('mark_all_read');
		if ($this->get_f) {
			$get = 'f_' . $this->get_f;
			$string_mark = Translate::t ('mark_feed_read');
		} elseif ($this->get_c &&
		          $this->get_c != 'all' &&
		          $this->get_c != 'favoris' &&
		          $this->get_c != 'public') {
			$get = 'c_' . $this->get_c;
			$string_mark = Translate::t ('mark_cat_read');
		}
		$nextGet = $get;
		if (($this->conf->onread_jump_next () === 'yes') && (strlen ($get) > 2)) {
			$anotherUnreadId = '';
			$foundCurrent = false;
			switch ($get[0]) {
				case 'c':
					foreach ($this->cat_aside as $cat) {
						if ($cat->id () === $this->get_c) {
							$foundCurrent = true;
							continue;
						}
						if ($cat->nbNotRead () <= 0) continue;
						$anotherUnreadId = $cat->id ();
						if ($foundCurrent) break;
					}
					$nextGet = strlen ($anotherUnreadId) > 1 ? 'c_' . $anotherUnreadId : 'all';
					break;
				case 'f':
					foreach ($this->cat_aside as $cat) {
						if ($cat->id () === $this->get_c) {
							foreach ($cat->feeds () as $feed) {
								if ($feed->id () === $this->get_f) {
									$foundCurrent = true;
									continue;
								}
								if ($feed->nbNotRead () <= 0) continue;
								$anotherUnreadId = $feed->id ();
								if ($foundCurrent) break;
							}
							break;
						}
					}
					$nextGet = strlen ($anotherUnreadId) > 1 ? 'f_' . $anotherUnreadId : 'c_' . $this->get_c;
					break;
			}
		}
	?>

	<div class="stick" id="nav_menu_read_all">
		<a class="read_all btn" href="<?php echo _url ('entry', 'read', 'is_read', 1, 'get', $get, 'nextGet', $nextGet); ?>"><?php echo Translate::t ('mark_read'); ?></a>
		<div class="dropdown">
			<div id="dropdown-read" class="dropdown-target"></div>

			<a class="dropdown-toggle btn" href="#dropdown-read"><i class="icon i_down"></i></a>
			<ul class="dropdown-menu">
				<li class="dropdown-close"><a href="#close">&nbsp;</a></li>

				<li class="item"><a href="<?php echo _url ('entry', 'read', 'is_read', 1, 'get', $get, 'nextGet', $nextGet); ?>"><?php echo $string_mark; ?></a></li> 
				<li class="separator"></li>
<?php
	$date = getdate ();
	$today = mktime (0, 0, 0, $date['mon'], $date['mday'], $date['year']);
	$one_week = $today - 604800;
?>
				<li class="item"><a href="<?php echo _url ('entry', 'read', 'is_read', 1, 'get', $get, 'dateMax', $today); ?>"><?php echo Translate::t ('before_one_day'); ?></a></li>
				<li class="item"><a href="<?php echo _url ('entry', 'read', 'is_read', 1, 'get', $get, 'dateMax', $one_week); ?>"><?php echo Translate::t ('before_one_week'); ?></a></li>
			</ul>
		</div>
	</div>
	<?php } ?>

	<?php
		$params = Request::params ();
		if (isset ($params['search'])) {
			$params['search'] = urlencode ($params['search']);
		}
		$url = array (
			'c' => 'index',
			'a' => 'index',
			'params' => $params
		);
	?>
	<div class="dropdown" id="nav_menu_views">
		<div id="dropdown-views" class="dropdown-target"></div>
		<a class="dropdown-toggle btn" href="#dropdown-views"><?php echo Translate::t ('display'); ?> <i class="icon i_down"></i></a>
		<ul class="dropdown-menu">
			<li class="dropdown-close"><a href="#close">&nbsp;</a></li>

			<?php
				$url_output = $url;
				$actual_view = Request::param('output', 'normal');
			?>
			<?php if($actual_view != 'normal') { ?>
			<li class="item">
				<?php $url_output['params']['output'] = 'normal'; ?>
				<a class="view_normal" href="<?php echo Url::display ($url_output); ?>">
					<?php echo Translate::t ('normal_view'); ?>
				</a>
			</li>
			<?php } if($actual_view != 'reader') { ?>
			<li class="item">
				<?php $url_output['params']['output'] = 'reader'; ?>
				<a class="view_normal" href="<?php echo Url::display ($url_output); ?>">
					<?php echo Translate::t ('reader_view'); ?>
				</a>
			</li>
			<?php } if($actual_view != 'global') { ?>
			<li class="item">
				<?php $url_output['params']['output'] = 'global'; ?>
				<a class="view_normal" href="<?php echo Url::display ($url_output); ?>">
					<?php echo Translate::t ('global_view'); ?>
				</a>
			</li>
			<?php } ?>

			<li class="separator"></li>

			<li class="item">
				<?php
					$url_state = $url;
					if ($this->state == 'not_read') {
						$url_state['params']['state'] = 'all';
				?>
				<a class="print_all" href="<?php echo Url::display ($url_state); ?>">
					<?php echo Translate::t ('show_all_articles'); ?>
				</a>
				<?php
					} else {
						$url_state['params']['state'] = 'not_read';
				?>
				<a class="print_non_read" href="<?php echo Url::display ($url_state); ?>">
					<?php echo Translate::t ('show_not_reads'); ?>
				</a>
				<?php } ?>
			</li>

			<li class="item">
				<?php
					$url_order = $url;
					if ($this->order == 'low_to_high') {
						$url_order['params']['order'] = 'high_to_low';
				?>
				<a href="<?php echo Url::display ($url_order); ?>">
					<?php echo Translate::t ('older_first'); ?>
				</a>
				<?php
					} else {
						$url_order['params']['order'] = 'low_to_high';
				?>
				<a href="<?php echo Url::display ($url_order); ?>">
					<?php echo Translate::t ('newer_first'); ?>
				</a>
				<?php } ?>
			</li>

			<li class="separator"></li>

			<li class="item">
				<a class="view_rss" target="_blank" href="<?php echo Url::display ($this->rss_url); ?>">
					<?php echo Translate::t ('rss_view'); ?>
				</a>
			</li>
		</ul>
	</div>
</div>