Add "Enable notifications" checkbox in "Add Comment" form

Currently, it is a little to easy to forget to enable notifications
for a package after leaving a comment, thus never being notified of a
reply. Even though the "Enable notifications" link is on the same
page, it is not part of the flow for posting a new comment, and so,
easy to miss.

Most web forums and comment systems include a checkbox to enable
notifications when posting for the first time in a thread. This patch
implements this in aurweb, as well.

Signed-off-by: Eli Schwartz <eschwartz@archlinux.org>
This commit is contained in:
Vladimir Panteleev 2018-10-16 05:22:29 +00:00 committed by Lukas Fleischer
parent e0d821352f
commit e3ca3c96e5
3 changed files with 14 additions and 0 deletions

View file

@ -13,6 +13,12 @@
</p>
<p>
<input type="submit" value="<?= (isset($comment_id)) ? __("Save") : __("Add Comment") ?>" />
<?php if (!isset($comment_id) && !pkgbase_user_notify($uid, $base_id)): ?>
<span class="comment-enable-notifications">
<input type="checkbox" name="enable_notifications" id="id_enable_notifications" />
<label for="id_enable_notifications"><?= __("Enable notifications") ?></label>
</span>
<?php endif; ?>
</p>
</fieldset>
</form>