mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 20:08:53 +00:00
[ticket/11700] With namespaces interface will no longer be a valid classname
PHPBB3-11700
This commit is contained in:
parent
c15bde161a
commit
b81613e5e5
11 changed files with 14 additions and 14 deletions
|
@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
||||||
*
|
*
|
||||||
* @package auth
|
* @package auth
|
||||||
*/
|
*/
|
||||||
interface phpbb_auth_provider_interface
|
interface phpbb_auth_provider_provider_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Checks whether the user is currently identified to the authentication
|
* Checks whether the user is currently identified to the authentication
|
||||||
|
@ -98,7 +98,7 @@ interface phpbb_auth_provider_interface
|
||||||
* into phpBB.
|
* into phpBB.
|
||||||
*
|
*
|
||||||
* @param array $user
|
* @param array $user
|
||||||
* @return boolean true if the given user is authenticated, false if the
|
* @return boolean true if the given user is authenticated, false if the
|
||||||
* session should be closed, or null if not implemented.
|
* session should be closed, or null if not implemented.
|
||||||
*/
|
*/
|
||||||
public function validate_session($user);
|
public function validate_session($user);
|
|
@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
|
||||||
* Interface for avatar drivers
|
* Interface for avatar drivers
|
||||||
* @package phpBB3
|
* @package phpBB3
|
||||||
*/
|
*/
|
||||||
interface phpbb_avatar_driver_interface
|
interface phpbb_avatar_driver_driver_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Returns the name of the driver.
|
* Returns the name of the driver.
|
|
@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
||||||
*
|
*
|
||||||
* @package acm
|
* @package acm
|
||||||
*/
|
*/
|
||||||
interface phpbb_cache_driver_interface
|
interface phpbb_cache_driver_driver_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Load global cache
|
* Load global cache
|
|
@ -12,7 +12,7 @@
|
||||||
*
|
*
|
||||||
* @package db
|
* @package db
|
||||||
*/
|
*/
|
||||||
interface phpbb_db_migration_tool_interface
|
interface phpbb_db_migration_tool_tool_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Retrieve a short name used for commands in migrations.
|
* Retrieve a short name used for commands in migrations.
|
|
@ -21,7 +21,7 @@ if (!defined('IN_PHPBB'))
|
||||||
*
|
*
|
||||||
* @package extension
|
* @package extension
|
||||||
*/
|
*/
|
||||||
interface phpbb_extension_interface
|
interface phpbb_extension_extension_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* enable_step is executed on enabling an extension until it returns false.
|
* enable_step is executed on enabling an extension until it returns false.
|
|
@ -22,7 +22,7 @@ if (!defined('IN_PHPBB'))
|
||||||
*
|
*
|
||||||
* @package phpBB3
|
* @package phpBB3
|
||||||
*/
|
*/
|
||||||
interface phpbb_groupposition_interface
|
interface phpbb_groupposition_groupposition_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Returns the value for a given group, if the group exists.
|
* Returns the value for a given group, if the group exists.
|
||||||
|
@ -32,7 +32,7 @@ interface phpbb_groupposition_interface
|
||||||
public function get_group_value($group_id);
|
public function get_group_value($group_id);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get number of groups displayed
|
* Get number of groups displayed
|
||||||
*
|
*
|
||||||
* @return int value of the last item displayed
|
* @return int value of the last item displayed
|
||||||
*/
|
*/
|
|
@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
||||||
*
|
*
|
||||||
* @package phpbb_log
|
* @package phpbb_log
|
||||||
*/
|
*/
|
||||||
interface phpbb_log_interface
|
interface phpbb_log_log_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* This function returns the state of the log system.
|
* This function returns the state of the log system.
|
|
@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
|
||||||
* Base notifications method interface
|
* Base notifications method interface
|
||||||
* @package notifications
|
* @package notifications
|
||||||
*/
|
*/
|
||||||
interface phpbb_notification_method_interface
|
interface phpbb_notification_method_method_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Get notification method name
|
* Get notification method name
|
|
@ -19,7 +19,7 @@ if (!defined('IN_PHPBB'))
|
||||||
* Base notifications interface
|
* Base notifications interface
|
||||||
* @package notifications
|
* @package notifications
|
||||||
*/
|
*/
|
||||||
interface phpbb_notification_type_interface
|
interface phpbb_notification_type_type_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Get notification type name
|
* Get notification type name
|
||||||
|
@ -27,7 +27,7 @@ interface phpbb_notification_type_interface
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
public function get_type();
|
public function get_type();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set initial data from the database
|
* Set initial data from the database
|
||||||
*
|
*
|
|
@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
|
||||||
*
|
*
|
||||||
* @package phpbb_request
|
* @package phpbb_request
|
||||||
*/
|
*/
|
||||||
interface phpbb_request_interface
|
interface phpbb_request_request_interface
|
||||||
{
|
{
|
||||||
/**#@+
|
/**#@+
|
||||||
* Constant identifying the super global with the same name.
|
* Constant identifying the super global with the same name.
|
|
@ -15,7 +15,7 @@ if (!defined('IN_PHPBB'))
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface phpbb_tree_interface
|
interface phpbb_tree_tree_interface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* Inserts an item into the database table and into the tree.
|
* Inserts an item into the database table and into the tree.
|
Loading…
Add table
Reference in a new issue