aboutsummaryrefslogtreecommitdiff
path: root/app/views/configure/shortcut.phtml
blob: 01e66adb4ea2486b3095eb3f06f0cf898a9f31fc (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
<?php $this->partial ('aside_configure'); ?>

<div class="post">
	<a href="<?php echo _url ('index', 'index'); ?>"><?php echo Translate::t ('back_to_rss_feeds'); ?></a>

	<datalist id="keys">
		<?php foreach ($this->list_keys as $key) { ?>
		<option value="<?php echo $key; ?>">
		<?php } ?>
	</datalist>

	<?php $s = $this->conf->shortcuts (); ?>

	<form method="post" action="<?php echo _url ('configure', 'shortcut'); ?>">
		<legend><?php echo Translate::t ('shortcuts_management'); ?></legend>

		<noscript><p class="alert alert-error"><?php echo Translate::t ('javascript_for_shortcuts'); ?></p></noscript>

		<div class="form-group">
			<label class="group-name" for="mark_read"><?php echo Translate::t ('mark_read'); ?></label>
			<div class="group-controls">
				<input type="text" id="mark_read" name="shortcuts[mark_read]" list="keys" value="<?php echo $s['mark_read']; ?>" />
				<?php echo Translate::t ('shift_for_all_read'); ?>
			</div>
		</div>

		<div class="form-group">
			<label class="group-name" for="mark_favorite"><?php echo Translate::t ('mark_favorite'); ?></label>
			<div class="group-controls">
				<input type="text" id="mark_favorite" name="shortcuts[mark_favorite]" list="keys" value="<?php echo $s['mark_favorite']; ?>" />
			</div>
		</div>

		<div class="form-group">
			<label class="group-name" for="go_website"><?php echo Translate::t ('see_on_website'); ?></label>
			<div class="group-controls">
				<input type="text" id="go_website" name="shortcuts[go_website]" list="keys" value="<?php echo $s['go_website']; ?>" />
			</div>
		</div>

		<div class="form-group">
			<label class="group-name" for="next_entry"><?php echo Translate::t ('next_article'); ?></label>
			<div class="group-controls">
				<input type="text" id="next_entry" name="shortcuts[next_entry]" list="keys" value="<?php echo $s['next_entry']; ?>" />
				<?php echo Translate::t ('shift_for_last'); ?>
			</div>
		</div>

		<div class="form-group">
			<label class="group-name" for="prev_entry"><?php echo Translate::t ('previous_article'); ?></label>
			<div class="group-controls">
				<input type="text" id="prev_entry" name="shortcuts[prev_entry]" list="keys" value="<?php echo $s['prev_entry']; ?>" />
				<?php echo Translate::t ('shift_for_first'); ?>
			</div>
		</div>

		<div class="form-group form-actions">
			<div class="group-controls">
				<button type="submit" class="btn btn-important"><?php echo Translate::t ('save'); ?></button>
				<button type="reset" class="btn"><?php echo Translate::t ('cancel'); ?></button>
			</div>
		</div>
	</form>
</div>