| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- <?php
- declare(strict_types=1);
- /** @var FreshRSS_View $this */
- if ($this->query === null) {
- throw new FreshRSS_Context_Exception('Query not initialised!');
- }
- $ajax = Minz_Request::paramBoolean('ajax') || $this->displaySlider;
- ?>
- <div class="post">
- <h2><?= $this->query->getName() ?></h2>
- <div>
- <a href="<?= $this->query->getUrl() ?>"><?= _i('link') ?> <?= _t('gen.action.filter') ?></a>
- </div>
- <form method="post" action="<?= _url('configure', 'query', 'id', $this->queryId, 'from', $ajax ? 'queries' : 'query', ...($ajax ? ['#', 'slider'] : [])) ?>" autocomplete="off" data-auto-leave-validation="1">
- <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
- <div class="form-group">
- <label class="group-name" for="name"><?= _t('conf.query.name') ?></label>
- <div class="group-controls">
- <input type="text" class="w100" name="name" id="name" value="<?= $this->query->getName() ?>" />
- <input type="hidden" name="query[token]" id="query_token" value="<?= $this->query->getToken() ?>" />
- </div>
- </div>
- <div class="form-group">
- <label class="group-name" for="description"><?= _t('conf.query.description') ?></label>
- <div class="group-controls">
- <input type="text" class="w100" name="query[description]" id="description" value="<?= $this->query->getDescription() ?>" />
- </div>
- </div>
- <div class="form-group">
- <label class="group-name" for="imageUrl"><?= _t('conf.query.image_url') ?></label>
- <div class="group-controls">
- <input type="text" class="w100" name="query[imageUrl]" id="imageUrl" value="<?= $this->query->getImageUrl() ?>" />
- </div>
- </div>
- <?php if (FreshRSS_Context::systemConf()->api_enabled) { ?>
- <fieldset>
- <legend><?= _t('conf.query.share') ?></legend>
- <div class="form-group">
- <div class="group-controls">
- <label class="checkbox" for="shareRss">
- <input type="checkbox" name="query[shareRss]" id="shareRss" value="1" <?= $this->query->shareRss() ? 'checked="checked"' : ''?> />
- <?= _t('conf.query.filter.shareRss') ?>
- </label>
- <?php if ($this->query->sharedUrlRss() !== ''): ?>
- <ul>
- <li><a href="<?= $this->query->sharedUrlHtml() ?>"><?= _i('link') ?> <?= _t('conf.query.share.html') ?></a></li>
- <li><a href="<?= $this->query->sharedUrlGreader() ?>"><?= _i('link') ?> <?= _t('conf.query.share.greader') ?></a></li>
- <li><a href="<?= $this->query->sharedUrlRss() ?>"><?= _i('link') ?> <?= _t('conf.query.share.rss') ?></a></li>
- </ul>
- <label class="checkbox" for="publishLabelsInsteadOfTags">
- <input type="checkbox" name="query[publishLabelsInsteadOfTags]" id="publishLabelsInsteadOfTags" value="1" <?= $this->query->publishLabelsInsteadOfTags() ? 'checked="checked"' : ''?> />
- <?= _t('conf.query.filter.publish_labels_instead_of_tags') ?>
- </label>
- <?php endif; ?>
- </div>
- <div class="group-controls">
- <label class="checkbox" for="shareOpml">
- <input type="checkbox" name="query[shareOpml]" id="shareOpml" value="1" <?= $this->query->shareOpml() && $this->query->safeForOpml() ? 'checked="checked"' : '' ?>
- <?= $this->query->safeForOpml() ? '' : 'disabled="disabled"' ?> />
- <?= _t('conf.query.filter.shareOpml') ?>
- </label>
- <?php if ($this->query->sharedUrlOpml() !== ''): ?>
- <ul>
- <li><a href="<?= $this->query->sharedUrlOpml() ?>"><?= _i('link') ?> <?= _t('conf.query.share.opml') ?></a></li>
- </ul>
- <?php endif; ?>
- </div>
- <p class="help"><?= _i('help') ?> <?= _t('conf.query.share.help') ?></a></p>
- <p class="help"><?= _i('help') ?> <?= _t('conf.query.help') ?></a></p>
- </div>
- <div class="form-group form-actions">
- <div class="group-controls">
- <button type="submit" class="btn btn-important"><?= _t('gen.action.submit') ?></button>
- </div>
- </div>
- </fieldset>
- <?php } else { ?>
- <div class="form-group">
- <label class="group-name"><?= _t('conf.query.share.disabled.title') ?></label>
- <div class="group-controls">
- <?= _t('conf.query.share.disabled') ?>
- <p class="help"><?= _i('help') ?> <?= _t('conf.query.help') ?></a></p>
- </div>
- </div>
- <?php } ?>
- <fieldset>
- <legend><?= _t('conf.query.filter') ?></legend>
- <div class="form-group">
- <label class="group-name" for=""><?= _t('conf.query.filter.search') ?></label>
- <div class="group-controls">
- <input type="text" class="w100" id="query_search" name="query[search]" value="<?=
- htmlspecialchars($this->query->getSearch()->toString(expandUserQueries: false), ENT_COMPAT, 'UTF-8') ?>"/>
- <p class="help"><?= _i('help') ?> <?= _t('gen.menu.search_help') ?></a></p>
- </div>
- </div>
- <div class="form-group">
- <label class="group-name" for=""><?= _t('conf.query.filter.state') ?></label>
- <div class="group-controls">
- <label class="checkbox" for="show_read">
- <input type="checkbox" name="query[state][]" id="show_read"
- value="<?= FreshRSS_Entry::STATE_READ ?>" <?= FreshRSS_Entry::STATE_READ & $this->query->getState() ? 'checked="checked"' : ''?> />
- <?= _t('index.menu.read') ?>
- </label>
- <label class="checkbox" for="show_not_read">
- <input type="checkbox" name="query[state][]" id="show_not_read"
- value="<?= FreshRSS_Entry::STATE_NOT_READ ?>" <?= FreshRSS_Entry::STATE_NOT_READ & $this->query->getState() ? 'checked="checked"' : ''?> />
- <?= _t('index.menu.unread') ?>
- </label>
- <label class="checkbox" for="show_favorite">
- <input type="checkbox" name="query[state][]" id="show_favorite"
- value="<?= FreshRSS_Entry::STATE_FAVORITE ?>" <?= FreshRSS_Entry::STATE_FAVORITE & $this->query->getState() ? 'checked="checked"' : ''?> />
- <?= _t('index.menu.starred') ?>
- </label>
- <label class="checkbox" for="show_not_favorite">
- <input type="checkbox" name="query[state][]" id="show_not_favorite"
- value="<?= FreshRSS_Entry::STATE_NOT_FAVORITE ?>" <?= FreshRSS_Entry::STATE_NOT_FAVORITE & $this->query->getState() ? 'checked="checked"' : ''?> />
- <?= _t('index.menu.non-starred') ?>
- </label>
- </div>
- </div>
- <div class="form-group">
- <label class="group-name" for="query_get"><?= _t('conf.query.filter.type') ?></label>
- <div class="group-controls">
- <select name="query[get]" class="w100" id="query_get" size="10">
- <option value="Z" <?= 'Z' === $this->query->getGet() ? 'selected="selected"' : '' ?>><?= _t('conf.query.get_Z') ?></option>
- <option value="A" <?= 'A' === $this->query->getGet() ? 'selected="selected"' : '' ?>><?= _t('conf.query.get_A') ?></option>
- <option value="a" <?= in_array($this->query->getGet(), ['', 'a'], true) ? 'selected="selected"' : '' ?>><?= _t('index.feed.title') ?></option>
- <option value="i" <?= 'i' === $this->query->getGet() ? 'selected="selected"' : '' ?>><?= _t('index.menu.important') ?></option>
- <option value="s" <?= 's' === $this->query->getGet() ? 'selected="selected"' : '' ?>><?= _t('index.feed.title_fav') ?></option>
- <option value="T" <?= 'T' === $this->query->getGet() ? 'selected="selected"' : '' ?>><?= _t('index.menu.mylabels') ?></option>
- <optgroup label="<?= _t('conf.query.filter.tags') ?>">
- <?php foreach ($this->tags as $tag): ?>
- <option value="t_<?= $tag->id() ?>" <?= "t_{$tag->id()}" === $this->query->getGet() ? 'selected="selected"' : '' ?>><?= $tag->name() ?></option>
- <?php endforeach?>
- </optgroup>
- <optgroup label="<?= _t('conf.query.filter.categories') ?>">
- <?php foreach ($this->categories as $category): ?>
- <option value="c_<?= $category->id() ?>" <?= "c_{$category->id()}" === $this->query->getGet() ? 'selected="selected"' : '' ?>><?= $category->name() ?></option>
- <?php endforeach?>
- </optgroup>
- <optgroup label="<?= _t('conf.query.filter.feeds') ?>">
- <?php foreach ($this->feeds as $feed): ?>
- <option value="f_<?= $feed->id() ?>" <?= "f_{$feed->id()}" === $this->query->getGet() ? 'selected="selected"' : '' ?>><?= $feed->name() ?></option>
- <?php endforeach?>
- </optgroup>
- </select>
- </div>
- </div>
- <div class="form-group">
- <label class="group-name" for=""><?= _t('conf.query.filter.order') ?></label>
- <div class="group-controls">
- <select name="query[order]" class="w100" id="query_order">
- <option value=""></option>
- <option value="DESC" <?= 'DESC' === $this->query->getOrder() ? 'selected="selected"' : '' ?>><?= _t('conf.query.order_desc') ?></option>
- <option value="ASC" <?= 'ASC' === $this->query->getOrder() ? 'selected="selected"' : '' ?>><?= _t('conf.query.order_asc') ?></option>
- </select>
- </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="submit" class="btn btn-attention confirm"
- data-str-confirm="<?= _t('gen.js.confirm_action_feed_cat') ?>"
- formaction="<?= _url('configure', 'deleteQuery', 'id', $this->queryId) ?>"
- formmethod="post"><?= _t('gen.action.remove') ?></button>
- </div>
- </div>
- </fieldset>
- </form>
- </div>
|