mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/12594] Remove @package tags and update file headers
PHPBB3-12594
This commit is contained in:
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2013 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -11,9 +15,8 @@ namespace phpbb\notification;
|
||||
|
||||
/**
|
||||
* Notifications exception
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class exception extends \Exception
|
||||
{
|
||||
public function __toString()
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -11,7 +15,6 @@ namespace phpbb\notification;
|
||||
|
||||
/**
|
||||
* Notifications service class
|
||||
* @package notifications
|
||||
*/
|
||||
class manager
|
||||
{
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -11,7 +15,6 @@ namespace phpbb\notification\method;
|
||||
|
||||
/**
|
||||
* Base notifications method class
|
||||
* @package notifications
|
||||
*/
|
||||
abstract class base implements \phpbb\notification\method\method_interface
|
||||
{
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\method;
|
||||
/**
|
||||
* Email notification method class
|
||||
* This class handles sending emails for notifications
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class email extends \phpbb\notification\method\messenger_base
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\method;
|
||||
/**
|
||||
* Jabber notification method class
|
||||
* This class handles sending Jabber messages for notifications
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class jabber extends \phpbb\notification\method\messenger_base
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,8 +16,6 @@ namespace phpbb\notification\method;
|
||||
/**
|
||||
* Abstract notification method handling email and jabber notifications
|
||||
* using the phpBB messenger.
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
abstract class messenger_base extends \phpbb\notification\method\base
|
||||
{
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -11,7 +15,6 @@ namespace phpbb\notification\method;
|
||||
|
||||
/**
|
||||
* Base notifications method interface
|
||||
* @package notifications
|
||||
*/
|
||||
interface method_interface
|
||||
{
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2013 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Admin activation notifications class
|
||||
* This class handles notifications for users requiring admin activation
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class admin_activate_user extends \phpbb\notification\type\base
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Post approved notifications class
|
||||
* This class handles notifications for posts when they are approved (to their authors)
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class approve_post extends \phpbb\notification\type\post
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Topic approved notifications class
|
||||
* This class handles notifications for topics when they are approved (for authors)
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class approve_topic extends \phpbb\notification\type\topic
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -11,7 +15,6 @@ namespace phpbb\notification\type;
|
||||
|
||||
/**
|
||||
* Base notifications class
|
||||
* @package notifications
|
||||
*/
|
||||
abstract class base implements \phpbb\notification\type\type_interface
|
||||
{
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Bookmark updating notifications class
|
||||
* This class handles notifications for replies to a bookmarked topic
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class bookmark extends \phpbb\notification\type\post
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Post disapproved notifications class
|
||||
* This class handles notifications for posts when they are disapproved (for authors)
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class disapprove_post extends \phpbb\notification\type\approve_post
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Topic disapproved notifications class
|
||||
* This class handles notifications for topics when they are disapproved (for authors)
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class disapprove_topic extends \phpbb\notification\type\approve_topic
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2013 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2013 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Private message notifications class
|
||||
* This class handles notifications for private messages
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class pm extends \phpbb\notification\type\base
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Post notifications class
|
||||
* This class handles notifications for replies to a topic
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class post extends \phpbb\notification\type\base
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Post in queue notifications class
|
||||
* This class handles notifications for posts that are put in the moderation queue (for moderators)
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class post_in_queue extends \phpbb\notification\type\post
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Post quoting notifications class
|
||||
* This class handles notifying users when they have been quoted in a post
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class quote extends \phpbb\notification\type\post
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Private message reported notifications class
|
||||
* This class handles notifications for private messages when they are reported
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class report_pm extends \phpbb\notification\type\pm
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* PM report closed notifications class
|
||||
* This class handles notifications for when reports are closed on PMs (for the one who reported the PM)
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class report_pm_closed extends \phpbb\notification\type\pm
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,8 +16,6 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Reported post notifications class
|
||||
* This class handles notifications for reported posts
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
class report_post extends \phpbb\notification\type\post_in_queue
|
||||
{
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Post report closed notifications class
|
||||
* This class handles notifications for when reports are closed on posts (for the one who reported the post)
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class report_post_closed extends \phpbb\notification\type\post
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Topic notifications class
|
||||
* This class handles notifications for new topics
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class topic extends \phpbb\notification\type\base
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -12,9 +16,8 @@ namespace phpbb\notification\type;
|
||||
/**
|
||||
* Topic in queue notifications class
|
||||
* This class handles notifications for topics when they are put in the moderation queue (for moderators)
|
||||
*
|
||||
* @package notifications
|
||||
*/
|
||||
|
||||
class topic_in_queue extends \phpbb\notification\type\topic
|
||||
{
|
||||
/**
|
||||
|
@@ -1,9 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* @package notifications
|
||||
* @copyright (c) 2012 phpBB Group
|
||||
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
@@ -11,7 +15,6 @@ namespace phpbb\notification\type;
|
||||
|
||||
/**
|
||||
* Base notifications interface
|
||||
* @package notifications
|
||||
*/
|
||||
interface type_interface
|
||||
{
|
||||
|
Reference in New Issue
Block a user