Ajout du FR
Ajout du FR + correction du "functions.php"
This commit is contained in:
19
phpbb/report/exception/already_reported_exception.php
Normal file
19
phpbb/report/exception/already_reported_exception.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\report\exception;
|
||||
|
||||
class already_reported_exception extends invalid_report_exception
|
||||
{
|
||||
|
||||
}
|
||||
22
phpbb/report/exception/empty_report_exception.php
Normal file
22
phpbb/report/exception/empty_report_exception.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\report\exception;
|
||||
|
||||
class empty_report_exception extends invalid_report_exception
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct('EMPTY_REPORT');
|
||||
}
|
||||
}
|
||||
19
phpbb/report/exception/entity_not_found_exception.php
Normal file
19
phpbb/report/exception/entity_not_found_exception.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\report\exception;
|
||||
|
||||
class entity_not_found_exception extends invalid_report_exception
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\report\exception;
|
||||
|
||||
use \phpbb\exception\runtime_exception;
|
||||
|
||||
class factory_invalid_argument_exception extends runtime_exception
|
||||
{
|
||||
|
||||
}
|
||||
21
phpbb/report/exception/invalid_report_exception.php
Normal file
21
phpbb/report/exception/invalid_report_exception.php
Normal file
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\report\exception;
|
||||
|
||||
use \phpbb\exception\runtime_exception;
|
||||
|
||||
class invalid_report_exception extends runtime_exception
|
||||
{
|
||||
|
||||
}
|
||||
22
phpbb/report/exception/pm_reporting_disabled_exception.php
Normal file
22
phpbb/report/exception/pm_reporting_disabled_exception.php
Normal file
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\report\exception;
|
||||
|
||||
class pm_reporting_disabled_exception extends invalid_report_exception
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
namespace phpbb\report\exception;
|
||||
|
||||
class report_permission_denied_exception extends invalid_report_exception
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user