-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfigure.phtml
More file actions
45 lines (39 loc) · 2.16 KB
/
Copy pathconfigure.phtml
File metadata and controls
45 lines (39 loc) · 2.16 KB
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
<form action="<?= _url('extension', 'configure', 'e', urlencode($this->getName())); ?>" method="post">
<input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken(); ?>" />
<div class="form-group">
<label class="group-name" for="show_previous_entry_button"><?= _t('ext.enhanced_navigation.show_previous_entry_button'); ?></label>
<div class="group-controls">
<input type="checkbox" name="show_previous_entry_button" id="show_previous_entry_button" value="1" <?= $this->showPreviousEntryButton() ? 'checked=true' : '' ?>/>
</div>
</div>
<div class="form-group">
<label class="group-name" for="show_see_on_website_button"><?= _t('ext.enhanced_navigation.show_see_on_website_button'); ?></label>
<div class="group-controls">
<input type="checkbox" name="show_see_on_website_button" id="show_see_on_website_button" value="1" <?= $this->showSeeOnWebSiteButton() ? 'checked=true' : '' ?>/>
</div>
</div>
<div class="form-group">
<label class="group-name" for="show_up_button"><?= _t('ext.enhanced_navigation.show_up_button'); ?></label>
<div class="group-controls">
<input type="checkbox" name="show_up_button" id="show_up_button" value="1" <?= $this->showUpButton() ? 'checked=true' : '' ?>/>
</div>
</div>
<div class="form-group">
<label class="group-name" for="show_favorite_button"><?= _t('ext.enhanced_navigation.show_favorite_button'); ?></label>
<div class="group-controls">
<input type="checkbox" name="show_favorite_button" id="show_favorite_button" value="1" <?= $this->showFavoriteButton() ? 'checked=true' : '' ?>/>
</div>
</div>
<div class="form-group">
<label class="group-name" for="show_next_entry_button"><?= _t('ext.enhanced_navigation.show_next_entry_button'); ?></label>
<div class="group-controls">
<input type="checkbox" name="show_next_entry_button" id="show_next_entry_button" value="1" <?= $this->showNextEntryButton() ? 'checked=true' : '' ?>/>
</div>
</div>
<div class="form-group form-actions">
<div class="group-controls">
<button type="submit" class="btn btn-important"><?= _t('gen.action.submit'); ?></button>
<button type="reset" class="btn"><?= _t('gen.action.cancel'); ?></button>
</div>
</div>
</form>