aboutsummaryrefslogtreecommitdiff
path: root/app/views/update/index.phtml
blob: 63d7cca75ac1f536fe935335a2b376e41977f0de (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
<?php
	declare(strict_types=1);
	/** @var FreshRSS_View $this */
	$this->partial('aside_configure');
?>
<main class="post">
	<h1><?= _t('admin.update') ?></h1>

	<?php if (!empty($this->message)) { ?>
	<?php
		$class = 'alert-warn';
		switch ($this->message['status']) {
		case 'bad':
			$class = 'alert-error';
			break;
		case 'latest':
			$class = 'alert-success';
			break;
		default:
			$class = 'alert-warn';
			break;
		}
	?>
	<p class="alert <?= $class ?>">
		<?= $this->message['body'] ?>
	</p>
	<?php } ?>

	<div class="form-group">
		<label class="group-name"><?= _t('admin.update.current_version') ?></label>
		<div class="group-controls">
			<?= FRESHRSS_VERSION ?> (<a href="https://github.com/FreshRSS/FreshRSS/releases" target="_blank"><?= _t('admin.update.changelog') ?></a>)
		</div>
	</div>

	<div class="form-group">
		<label class="group-name"><?= _t('admin.update.releaseChannel') ?></label>
		<div class="group-controls">
			<?php if ($this->is_release_channel_stable) { ?>
				<a href="https://github.com/FreshRSS/FreshRSS/releases/latest" target="_blank">
					<?= _t('admin.update.releaseChannel.latest') ?>
				</a>
			<?php } else { ?>
				<a href="https://github.com/FreshRSS/FreshRSS/tree/edge" target="_blank">
					<?= _t('admin.update.releaseChannel.edge') ?>
				</a>
			<?php } ?>
		</div>
	</div>

	<div class="form-group">
		<label class="group-name"><?= _t('admin.update.last') ?></label>
		<div class="group-controls">
		<?= $this->last_update_time ?>
		</div>
	</div>

	<?php
		if (empty($this->message) || $this->message['status'] !== 'good') {
	?>
	<div class="form-group form-actions">
		<div class="group-controls">
			<a href="<?= _url('update', 'check') ?>" class="btn btn-important"><?= _t('admin.update.check') ?></a>
		</div>
	</div>
	<?php } ?>

	<?php if ($this->update_to_apply) { ?>
	<div class="form-group form-actions">
		<div class="group-controls">
			<a class="btn btn-attention btn-state1" href="<?= _url('update', 'apply') ?>" data-state2-id="button-update-loading"><?= _t('admin.update.apply') ?></a>
			<span class="btn btn-state2" id="button-update-loading"><?= _t('admin.update.loading') ?></span>
		</div>
	</div>
	<?php } ?>
</main>