f3e9b4d9b5
- use passthrough mode for image proxy (fixes #295) - add image proxy when rendering an article (fixes #314) - add referrer cloaking option to feed options (fixes #319)
40 lines
1.8 KiB
PHP
40 lines
1.8 KiB
PHP
<div class="page-header">
|
|
<h2><?= t('Edit subscription') ?></h2>
|
|
<ul>
|
|
<li><a href="?action=add"><?= t('add') ?></a></li>
|
|
<li><a href="?action=feeds"><?= t('feeds') ?></a></li>
|
|
<li><a href="?action=import"><?= t('import') ?></a></li>
|
|
<li><a href="?action=export"><?= t('export') ?></a></li>
|
|
</ul>
|
|
</div>
|
|
|
|
<form method="post" action="?action=edit-feed" autocomplete="off">
|
|
|
|
<?= Helper\form_hidden('id', $values) ?>
|
|
|
|
<?= Helper\form_label(t('Title'), 'title') ?>
|
|
<?= Helper\form_text('title', $values, $errors, array('required')) ?>
|
|
|
|
<?= Helper\form_label(t('Website URL'), 'site_url') ?>
|
|
<?= Helper\form_text('site_url', $values, $errors, array('required', 'placeholder="http://..."')) ?>
|
|
|
|
<?= Helper\form_label(t('Feed URL'), 'feed_url') ?>
|
|
<?= Helper\form_text('feed_url', $values, $errors, array('required', 'placeholder="http://..."')) ?>
|
|
|
|
<?= Helper\form_checkbox('rtl', t('Force RTL mode (Right-to-left language)'), 1, isset($values['rtl']) ? $values['rtl'] : false) ?><br />
|
|
|
|
<?= Helper\form_checkbox('download_content', t('Download full content'), 1, isset($values['download_content']) ? $values['download_content'] : false) ?><br />
|
|
|
|
<?= Helper\form_checkbox('cloak_referrer', t('Cloak the image referrer'), 1, isset($values['cloak_referrer']) ? $values['cloak_referrer'] : false) ?><br />
|
|
|
|
<?= Helper\form_checkbox('enabled', t('Activated'), 1, isset($values['enabled']) ? $values['enabled'] : false) ?>
|
|
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button>
|
|
<?= t('or') ?> <a href="?action=feeds"><?= t('cancel') ?></a>
|
|
</div>
|
|
</form>
|
|
<div class="form-actions">
|
|
<a href="?action=confirm-remove-feed&feed_id=<?= $values['id'] ?>" class="btn btn-red"><?= t('Remove this feed') ?></a>
|
|
</div>
|