aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2012-12-12 18:38:17 +0100
committerMarc Alexander <admin@m-a-styles.de>2012-12-12 18:38:17 +0100
commita57c81481d21433bdb185accfd7f2b82858ba461 (patch)
treea8f7d7c62c057e3fa5813f6c6e8d9d04860601a3 /phpBB/styles
parent7ce009f2e29045b2bd29dd670c900b79f7f3bd70 (diff)
downloadforums-a57c81481d21433bdb185accfd7f2b82858ba461.tar
forums-a57c81481d21433bdb185accfd7f2b82858ba461.tar.gz
forums-a57c81481d21433bdb185accfd7f2b82858ba461.tar.bz2
forums-a57c81481d21433bdb185accfd7f2b82858ba461.tar.xz
forums-a57c81481d21433bdb185accfd7f2b82858ba461.zip
[ticket/10954] Mark topics read without popup
Also added missing handling of locked forums. PHPBB3-10954
Diffstat (limited to 'phpBB/styles')
-rw-r--r--phpBB/styles/prosilver/template/ajax.js37
-rw-r--r--phpBB/styles/prosilver/template/viewforum_body.html4
2 files changed, 39 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js
index 4ae4f91d8d..7752c00367 100644
--- a/phpBB/styles/prosilver/template/ajax.js
+++ b/phpBB/styles/prosilver/template/ajax.js
@@ -16,6 +16,43 @@ phpbb.add_ajax_callback('mark_forums_read', function(res) {
$(this).removeClass('forum_unread_subforum').addClass('forum_read_subforum');
$(this).children('dt[title=' + unread_title + ']').attr('title', read_title);
});
+
+ $('li.row dl.forum_unread_locked').each(function(e) {
+ $(this).removeClass('forum_unread_locked').addClass('forum_read_locked');
+ $(this).children('dt[title=' + unread_title + ']').attr('title', read_title);
+ });
+});
+
+// This callback will mark all topic icons read
+phpbb.add_ajax_callback('mark_topics_read', function(res) {
+ var i,j;
+ var read_title = res.NO_UNREAD_POSTS;
+ var unread_title = res.UNREAD_POSTS;
+ var icons_array = [
+ ['global_unread', 'global_read'],
+ ['announce_unread', 'announce_read'],
+ ['sticky_unread', 'sticky_read'],
+ ['topic_unread', 'topic_read']
+ ];
+
+ var icons_state = ['', '_hot', '_hot_mine', '_locked', '_locked_mine', '_mine'];
+
+ // Make sure all icons are marked as read
+ for (i = 0; i < icons_array.length; i++)
+ {
+ for (j = 0; j < icons_state.length; j++)
+ {
+ $('li.row dl.' + icons_array[i][0] + icons_state[j]).each(function(e) {
+ $(this).removeClass(icons_array[i][0] + icons_state[j]).addClass(icons_array[i][1] + icons_state[j]);
+ $(this).children('dt[title=' + unread_title + ']').attr('title', read_title);
+ });
+ }
+ }
+
+ // Remove link to first unread post
+ $('span.icon_topic_newest').each(function(e) {
+ $(this).remove();
+ });
});
// This callback finds the post from the delete link, and removes it.
diff --git a/phpBB/styles/prosilver/template/viewforum_body.html b/phpBB/styles/prosilver/template/viewforum_body.html
index 0f2c1a30ec..b47c13d573 100644
--- a/phpBB/styles/prosilver/template/viewforum_body.html
+++ b/phpBB/styles/prosilver/template/viewforum_body.html
@@ -57,7 +57,7 @@
<!-- IF .pagination or TOTAL_POSTS or TOTAL_TOPICS -->
<div class="pagination">
- <!-- IF not S_IS_BOT and U_MARK_TOPICS --><a href="{U_MARK_TOPICS}" accesskey="m" data-ajax="true">{L_MARK_TOPICS_READ}</a> &bull; <!-- ENDIF -->
+ <!-- IF not S_IS_BOT and U_MARK_TOPICS --><a href="{U_MARK_TOPICS}" accesskey="m" data-ajax="mark_topics_read" data-overlay="false">{L_MARK_TOPICS_READ}</a> &bull; <!-- ENDIF -->
<!-- IF TOTAL_TOPICS -->{TOTAL_TOPICS} &bull; <!-- ENDIF -->
<!-- IF .pagination -->
<!-- INCLUDE pagination.html -->
@@ -211,7 +211,7 @@
<!-- IF PAGE_NUMBER or TOTAL_POSTS or TOTAL_TOPICS -->
<div class="pagination">
- <!-- IF TOTAL_TOPICS and not S_IS_BOT and U_MARK_TOPICS --><a href="{U_MARK_TOPICS}">{L_MARK_TOPICS_READ}</a> &bull; <!-- ENDIF -->
+ <!-- IF TOTAL_TOPICS and not S_IS_BOT and U_MARK_TOPICS --><a href="{U_MARK_TOPICS}" data-ajax="mark_topics_read" data-overlay="false">{L_MARK_TOPICS_READ}</a> &bull; <!-- ENDIF -->
<!-- IF TOTAL_POSTS and not NEWEST_USER --> {TOTAL_POSTS}<!-- ELSEIF TOTAL_TOPICS and not NEWEST_USER --> {TOTAL_TOPICS} &bull; <!-- ENDIF -->
<!-- IF TOTAL_USERS -->{TOTAL_USERS} &bull; <!-- ENDIF -->
<!-- IF .pagination -->