miniflux-legacy/templates/config.php

101 lines
5.0 KiB
PHP
Raw Normal View History

2013-02-18 03:48:21 +01:00
<div class="page-header">
2013-04-13 03:08:55 +02:00
<h2><?= t('Preferences') ?></h2>
2013-02-18 03:48:21 +01:00
</div>
2013-03-27 02:54:26 +01:00
<section>
<form method="post" action="?action=config" autocomplete="off">
2013-02-18 03:48:21 +01:00
2013-04-13 03:08:55 +02:00
<?= Helper\form_label(t('Username'), 'username') ?>
2013-02-18 03:48:21 +01:00
<?= Helper\form_text('username', $values, $errors, array('required')) ?><br/>
2013-04-13 03:08:55 +02:00
<?= Helper\form_label(t('Password'), 'password') ?>
2013-03-27 02:54:26 +01:00
<?= Helper\form_password('password', $values, $errors) ?><br/>
2013-02-18 03:48:21 +01:00
2013-04-13 03:08:55 +02:00
<?= Helper\form_label(t('Confirmation'), 'confirmation') ?>
2013-02-18 03:48:21 +01:00
<?= Helper\form_password('confirmation', $values, $errors) ?><br/>
2013-04-13 03:08:55 +02:00
2014-02-26 01:03:46 +01:00
<?= Helper\form_label(t('Timezone'), 'timezone') ?>
<?= Helper\form_select('timezone', $timezones, $values, $errors) ?><br/>
2013-04-13 03:08:55 +02:00
<?= Helper\form_label(t('Language'), 'language') ?>
<?= Helper\form_select('language', $languages, $values, $errors) ?><br/>
2013-02-18 03:48:21 +01:00
2013-05-26 19:09:34 +02:00
<?= Helper\form_label(t('Remove automatically read items'), 'autoflush') ?>
<?= Helper\form_select('autoflush', $autoflush_options, $values, $errors) ?><br/>
<?= Helper\form_label(t('Items per page'), 'items_per_page') ?>
<?= Helper\form_select('items_per_page', $paging_options, $values, $errors) ?><br/>
<?= Helper\form_label(t('Default sorting order for items'), 'items_sorting_direction') ?>
<?= Helper\form_select('items_sorting_direction', $sorting_options, $values, $errors) ?><br/>
<?= Helper\form_label(t('When there is nothing to read, redirect me to this page'), 'redirect_nothing_to_read') ?>
<?= Helper\form_select('redirect_nothing_to_read', $redirect_nothing_to_read_options, $values, $errors) ?><br/>
2013-07-17 03:58:11 +02:00
<?= Helper\form_label(t('Theme'), 'theme') ?>
<?= Helper\form_select('theme', $theme_options, $values, $errors) ?><br/>
<?= Helper\form_checkbox('nocontent', t('Do not fetch the content of articles'), 1, isset($values['nocontent']) ? $values['nocontent'] : false) ?><br />
<ul>
<li>
<?php if ($values['auth_google_token']): ?>
<?= t('Your Google Account is linked to Miniflux') ?>, <a href="?action=unlink-account-provider&amp;type=google"><?= t('remove') ?></a>
<?php else: ?>
<a href="?action=google-redirect-link"><?= t('Link Miniflux to my Google account') ?></a>
<?php endif ?>
</li>
<li>
<?php if ($values['auth_mozilla_token']): ?>
<?= t('Your Mozilla Persona Account is linked to Miniflux') ?>, <a href="?action=unlink-account-provider&amp;type=mozilla"><?= t('remove') ?></a>
<?php else: ?>
<a href="#" data-action="mozilla-link"><?= t('Link Miniflux to my Mozilla Persona account') ?></a>
<?php endif ?>
</li>
</ul>
2013-02-18 03:48:21 +01:00
<div class="form-actions">
2013-06-15 02:42:09 +02:00
<input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/>
2013-02-18 03:48:21 +01:00
</div>
</form>
2013-03-27 02:54:26 +01:00
</section>
<div class="page-section">
2014-01-13 00:35:46 +01:00
<h2><?= t('More information') ?></h2>
</div>
2013-03-27 02:54:26 +01:00
<section>
2013-07-28 21:44:51 +02:00
<div class="alert alert-normal">
<h3 id="api"><?= t('API') ?></h3>
2013-07-28 21:44:51 +02:00
<ul>
<li>
<?= t('Bookmarklet:') ?>
<a href="javascript:location.href='<?= Helper\get_current_base_url() ?>?action=subscribe&amp;url='+encodeURIComponent(location.href)"><?= t('Subscribe with Miniflux') ?></a> (<?= t('Drag and drop this link to your bookmarks') ?>)
<li>
<?= t('Bookmarks RSS Feed:') ?>
2014-02-08 20:13:14 +01:00
<a href="<?= Helper\get_current_base_url().'?action=bookmark-feed&amp;token='.urlencode($values['feed_token']) ?>" target="_blank"><?= Helper\get_current_base_url().'?action=bookmark-feed&amp;token='.urlencode($values['feed_token']) ?></a>
2013-08-10 04:23:57 +02:00
</li>
2013-07-28 21:44:51 +02:00
<li><?= t('API endpoint:') ?> <strong><?= Helper\get_current_base_url().'jsonrpc.php' ?></strong></li>
<li><?= t('API username:') ?> <strong><?= Helper\escape($values['username']) ?></strong></li>
<li><?= t('API token:') ?> <strong><?= Helper\escape($values['api_token']) ?></strong></li>
<li><a href="?action=generate-tokens"><?= t('Generate new tokens') ?></a></li>
2013-07-28 21:44:51 +02:00
</ul>
</div>
2013-04-04 03:18:30 +02:00
<div class="alert alert-normal">
2013-04-13 03:08:55 +02:00
<h3><?= t('Database') ?></h3>
2013-04-04 03:18:30 +02:00
<ul>
2013-07-28 21:44:51 +02:00
<li><?= t('Database size:') ?> <strong><?= Helper\format_bytes($db_size) ?></strong></li>
2013-04-13 03:08:55 +02:00
<li><a href="?action=optimize-db"><?= t('Optimize the database') ?></a> <?= t('(VACUUM command)') ?></li>
<li><a href="?action=download-db"><?= t('Download the entire database') ?></a> <?= t('(Gzip compressed Sqlite file)') ?></li>
2013-04-04 03:18:30 +02:00
</ul>
</div>
2014-03-17 02:56:43 +01:00
<?= \PicoFarad\Template\load('keyboard_shortcuts') ?>
2013-04-04 03:18:30 +02:00
<div class="alert alert-normal">
2013-04-13 03:08:55 +02:00
<h3><?= t('About') ?></h3>
2013-04-04 03:18:30 +02:00
<ul>
2013-04-13 03:08:55 +02:00
<li><?= t('Miniflux version:') ?> <strong><?= APP_VERSION ?></strong></li>
2014-02-08 20:13:14 +01:00
<li><?= t('Official website:') ?> <a href="http://miniflux.net" rel="noreferer" target="_blank">http://miniflux.net</a></li>
2013-08-30 01:34:11 +02:00
<li><a href="?action=console"><?= t('Console') ?></a></li>
2013-04-04 03:18:30 +02:00
</ul>
</div>
</section>
<script type="text/javascript" src="assets/js/persona.js" async></script>