Add default filter per user

This commit is contained in:
Aurélien
2018-04-02 23:07:04 +02:00
committed by Frédéric Guillot
parent bc4457c4cb
commit 5f7a3442d6
11 changed files with 35 additions and 5 deletions

View File

@@ -33,6 +33,7 @@
<ul class="panel">
<li><?= t('Timezone:') ?> <strong><?= $this->text->in($user['timezone'], $timezones) ?></strong></li>
<li><?= t('Language:') ?> <strong><?= $this->text->in($user['language'], $languages) ?></strong></li>
<li><?= t('Filter:') ?> <strong><?= $this->text->e($user['filter']) ?></strong></li>
<li><?= t('Notifications:') ?> <strong><?= $user['notifications_enabled'] == 1 ? t('Enabled') : t('Disabled') ?></strong></li>
</ul>