aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/notification
Commit message (Collapse)AuthorAgeFilesLines
* Merge remote-tracking branch 'EXreaction/ticket/11413' into developDavid King2013-05-207-119/+214
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * EXreaction/ticket/11413: (23 commits) [ticket/11413] Revert some cache service related changes from earlier [ticket/11413] Use phpbb_user in test [ticket/11413] $user should have been $this->user [ticket/11413] Fix unit tests [ticket/11413] Translate the error [ticket/11413] Rename file to something more helpful [ticket/11413] Remove remaining irrelevant code to this PR [ticket/11413] Remove mock sql_insert_buffer.php (not relevant to PR) [ticket/11413] Remove conversion of user_notifications [ticket/11413] Correct copyright year [ticket/11413] Remove changes for ticket 11420 from this branch [ticket/11413] Include mock class [ticket/11413] Don't use the database for the convert test [ticket/11413] Test get_notification_type_id and _ids functions [ticket/11413] Use sql_insert_buffer [ticket/11413] Create test for notification conversion [ticket/11413] Fix test fixtures and tests [ticket/11413] Fix some more tests [ticket/11413] Fix notification tests [ticket/11413] Prevent recursive function calls ...
| * [ticket/11413] Revert some cache service related changes from earlierNathaniel Guse2013-05-131-3/+3
| | | | | | | | PHPBB3-11413
| * [ticket/11413] $user should have been $this->userNathaniel Guse2013-05-131-1/+1
| | | | | | | | PHPBB3-11413
| * [ticket/11413] Translate the errorNathan Guse2013-05-101-1/+1
| | | | | | | | PHPBB3-11413
| * [ticket/11413] Remove remaining irrelevant code to this PRNathaniel Guse2013-05-031-3/+3
| | | | | | | | PHPBB3-11413
| * [ticket/11413] Fix notification testsNathaniel Guse2013-04-293-4/+33
| | | | | | | | | | | | | | Send types/methods the cache service, not the driver (not sure why the driver was sent before) PHPBB3-11413
| * [ticket/11413] Prevent recursive function callsNathaniel Guse2013-04-291-1/+4
| | | | | | | | PHPBB3-11413
| * [ticket/11413] Undo editing the user_notifications tableNathaniel Guse2013-04-295-45/+54
| | | | | | | | | | | | | | | | item_type is not equivalent to notification_type_name, it can be a generic string (typically used to be able to subscribe to multiple notification types while only subscribing to one item PHPBB3-11413
| * [ticket/11413] Rename columns in notification/manager.phpNathaniel Guse2013-04-281-111/+165
| | | | | | | | PHPBB3-11413
* | Merge remote-tracking branch 'remotes/bantu/ticket/11452' into developNathaniel Guse2013-05-111-1/+1
|\ \ | |/ |/|
| * [ticket/11452] Now notification_method_email checks whether user has address.Andreas Fischer2013-03-171-1/+1
| | | | | | | | | | | | | | | | Make sure the user has an email address set before offering email notifications. The address could be missing for whatever reason, e.g. external authentication. This is also consistent with XMPP/Jabber now. PHPBB3-11452
* | [ticket/11454] Add messenger function set_addressesNathaniel Guse2013-04-241-1/+1
| | | | | | | | | | | | | | | | Automatically fills to/im from a user row Send messenger the Jabber address if using Jabber notifications PHPBB3-11454
* | [ticket/11454] Correct jabber global available checkNathaniel Guse2013-04-241-1/+7
| | | | | | | | | | | | Copied from msg_jabber() PBPBB3-11454
* | [ticket/11488] Use correct base class in email notification methodMarc Alexander2013-04-152-2/+2
| | | | | | | | | | | | | | | | | | In ticket/11451 this was not correctly changed to reflect the new class phpbb_notifcation_method_messenger_base. Additionally, an undefined variable error has been fixed in messenger_base.php (change should be confirmed by bantu though). PHPBB3-11488
* | Merge pull request #1316 from nickvergessen/ticket/11405Nils Adermann2013-03-315-4/+35
|\ \ | | | | | | Ticket/11405 Users that are subscribed to a forum, should receive notifications for new replies
| * | [ticket/11474] Clarify comment with "global" and forum_id = 0Joas Schilling2013-03-262-2/+2
| | | | | | | | | | | | | | | | | | | | | Forum ID 0 in permission checks, checks the global moderator permission. PHPBB3-11405 PHPBB3-11474
| * | [ticket/11474] Check read permission before sending *_in_queue notificationsJoas Schilling2013-03-262-2/+16
| | | | | | | | | | | | | | | PHPBB3-11405 PHPBB3-11474
| * | [ticket/11405] Order users in bookmark, in order to pass postgres testsJoas Schilling2013-03-261-0/+1
| | | | | | | | | | | | PHPBB3-11405
| * | [ticket/11405] Sort $users array in order to prevent issues on postgresJoas Schilling2013-03-251-0/+1
| | | | | | | | | | | | PHPBB3-11405
| * | [ticket/11405] Send post notifications to forum subscribersJoas Schilling2013-03-251-0/+15
| |/ | | | | | | | | | | | | Like in 3.0 we should also send notifications about new posts to users that subscribed to the forum. (Subscriptions are verbose) PHPBB3-11405
* | Merge pull request #1300 from bantu/ticket/11451Nils Adermann2013-03-293-93/+103
|\ \ | | | | | | [ticket/11445] Add abstract class phpbb_notification_method_messenger_ba...
| * | [ticket/11445] Add abstract class phpbb_notification_method_messenger_base.Andreas Fischer2013-03-163-93/+103
| |/ | | | | | | PHPBB3-11445
* | [ticket/11403] Use an instance of phpbb_db_sql_insert_buffer instead.Andreas Fischer2013-03-291-14/+5
| | | | | | | | PHPBB3-11403
* | [ticket/11403] phpbb_notification_manager: Use SQL multi insert in batches.Andreas Fischer2013-03-291-2/+11
| | | | | | | | PHPBB3-11403
* | [ticket/11448] Use of $user_id parameter to mark a user's notifications readDavid King2013-03-261-0/+1
|/ | | | | | Currently, the $user_id is a parameter but is not used. This patch fixes that. PHPBB3-11448
* [ticket/11423] Send unformatted usernames to the email templateNathaniel Guse2013-03-092-2/+2
| | | | PHPBB3-11423
* Merge remote-tracking branch 'EXreaction/ticket/11408' into developDavid King2013-03-061-1/+1
|\ | | | | | | | | | | | | # By Nathaniel Guse # Via Nathaniel Guse * EXreaction/ticket/11408: [ticket/11408] user_jabber instead of jabber
| * [ticket/11408] user_jabber instead of jabberNathaniel Guse2013-03-061-1/+1
| | | | | | | | PHPBB3-11408
* | Merge remote-tracking branch 'EXreaction/ticket/11400' into developDavid King2013-03-051-2/+1
|\ \ | | | | | | | | | | | | | | | | | | # By Nathan Guse # Via Nathan Guse * EXreaction/ticket/11400: [ticket/11400] If email is disabled, disable it for notifications
| * | [ticket/11400] If email is disabled, disable it for notificationsNathan Guse2013-03-051-2/+1
| |/ | | | | | | PHPBB3-11400
* | [ticket/11402] Fix undefined index in post/topic_in_queueNathan Guse2013-03-052-8/+35
|/ | | | PHPBB3-11402
* [ticket/11103] Don't call generate_board_url many timesNathan Guse2013-02-283-6/+9
| | | | | | Fix a URL and some comments PHPBB3-11103
* [ticket/11103] Case time in queries as an intNathan Guse2013-02-281-3/+3
| | | | PHPBB3-11103
* [ticket/11103] Correcting constructor commentsNathan Guse2013-01-151-3/+3
| | | | PHPBB3-11103
* [ticket/11103] Including the set call in the declaration throws errorsNathan Guse2013-01-151-1/+8
| | | | | | Call the set_notification_manager from the load_object function instead. PHPBB3-11103
* [ticket/11103] Fix some various issues, better commentsNathan Guse2013-01-153-42/+130
| | | | PHPBB3-11103
* [ticket/11103] Fix sending the user ids to get the username/avatarNathaniel Guse2012-12-276-6/+6
| | | | PHPBB3-11103
* [ticket/11103] Fix some more merging issuesNathaniel Guse2012-12-271-3/+1
| | | | PHPBB3-11103
* [ticket/11103] Fix merge conflictNathaniel Guse2012-12-261-6/+1
| | | | PHPBB3-11103
* [ticket/11103] updating commentsNathan Guse2012-12-151-3/+3
| | | | PHPBB3-11103
* [ticket/11103] data -> notification_dataNathan Guse2012-12-152-8/+8
| | | | PHPBB3-11103
* [ticket/11103] unread -> notification_readNathan Guse2012-12-156-16/+23
| | | | PHPBB3-11103
* [ticket/11103] time -> notification_timeNathan Guse2012-12-1512-22/+21
| | | | PHPBB3-11103
* [ticket/11103] Move is_enabled to a separate table for better performanceNathan Guse2012-12-155-61/+91
| | | | PHPBB3-11103
* [ticket/11103] Prune notifications functionNathan Guse2012-12-151-3/+15
| | | | | | To delete all notifications before a certain time PHPBB3-11103
* Merge branch 'ticket/11103' of github.com:EXreaction/phpbb3 into ticket/11103Nathan Guse2012-12-151-10/+0
|\
| * [ticket/11103] Mark topic/post subscription notification read when approvedNathan Guse2012-12-151-10/+0
| | | | | | | | PHPBB3-11103
* | [ticket/11103] Purge notifications (to be used when an extension is purged)Nathan Guse2012-12-151-0/+15
|/ | | | PHPBB3-11103
* [ticket/11103] dbal -> phpbb_db_driverNathan Guse2012-12-133-6/+6
| | | | PHPBB3-11103
* [ticket/11103] Use scope: prototypeNathan Guse2012-12-091-19/+1
| | | | | | | | This lets us clean up the mess that was in load_object(), but requires scope: prototype to be added to the service definitions for all types or methods! PHPBB3-11103