aboutsummaryrefslogtreecommitdiff
path: root/app/views/stats/repartition.phtml
blob: 7b445a7ccb09b5c082d75a60dffcb3a1b9a2f012 (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
<?php $this->partial('aside_stats'); ?>

<div class="post ">
	<a href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>

	<h1><?= _t('admin.stats.repartition') ?></h1>

	<select id="feed_select" class="select-change">
		<option data-url="<?= _url('stats', 'repartition') ?>"><?= _t('admin.stats.all_feeds') ?></option>
	<?php foreach ($this->categories as $category) {
		$feeds = $category->feeds();
		if (!empty($feeds)) {
			echo '<optgroup label="', $category->name(), '">';
			foreach ($feeds as $feed) {
				if ($this->feed && $feed->id() == $this->feed->id()) {
					echo '<option value="', $feed->id(), '" selected="selected" data-url="', _url('stats', 'repartition', 'id', $feed->id()), '">', $feed->name(), '</option>';
				} else {
					echo '<option value="', $feed->id(), '" data-url="', _url('stats', 'repartition', 'id', $feed->id()), '">', $feed->name(), '</option>';
				}
			}
			echo '</optgroup>';
		}
	}?>
	</select>

	<?php if ($this->feed) {?>
		<a class="btn" href="<?= _url('subscription', 'index', 'id', $this->feed->id()) ?>">
			<?= _i('configure') ?> <?= _t('gen.action.manage') ?>
		</a>
	<?php }?>

	<div class="stat">
		<table>
		<tr>
			<th><?= _t('admin.stats.status_total') ?></th>
			<th><?= _t('admin.stats.status_read') ?></th>
			<th><?= _t('admin.stats.status_unread') ?></th>
			<th><?= _t('admin.stats.status_favorites') ?></th>
		</tr>
		<tr>
			<td class="numeric"><?= $this->repartition['total'] ?></td>
			<td class="numeric"><?= $this->repartition['count_reads'] ?></td>
			<td class="numeric"><?= $this->repartition['count_unreads'] ?></td>
			<td class="numeric"><?= $this->repartition['count_favorites'] ?></td>
		</tr>
		</table>
	</div>

	<div class="stat">
		<h2><?= _t('admin.stats.entry_per_hour', $this->averageHour) ?></h2>
		<div id="statsEntryPerHour" class="statGraph"></div>
	</div>

	<div class="stat half">
		<h2><?= _t('admin.stats.entry_per_day_of_week', $this->averageDayOfWeek) ?></h2>
		<div id="statsEntryPerDayOfWeek" class="statGraph"></div>
	</div>

	<div class="stat half">
		<h2><?= _t('admin.stats.entry_per_month', $this->averageMonth) ?></h2>
		<div id="statsEntryPerMonth" class="statGraph"></div>
	</div>
</div>

<script id="jsonRepartition" type="application/json"><?php
echo htmlspecialchars(json_encode(array(
	'repartitionHour' => $this->repartitionHour,
	'repartitionDayOfWeek' => $this->repartitionDayOfWeek,
	'days' => $this->days,
	'repartitionMonth' => $this->repartitionMonth,
	'months' => $this->months,
), JSON_UNESCAPED_UNICODE), ENT_NOQUOTES, 'UTF-8');
?></script>
<script src="../scripts/repartition.js?<?= @filemtime(PUBLIC_PATH . '/scripts/repartition.js') ?>"></script>