mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-11 01:55:24 +02:00
[feature/avatars] Fix docblocks and minor cosmetic issues
PHPBB3-10018
This commit is contained in:
parent
081440f6c4
commit
d439f47710
@ -72,7 +72,7 @@ class phpbb_avatar_driver_gravatar extends phpbb_avatar_driver
|
|||||||
$row['avatar_width'] = $this->request->variable('avatar_gravatar_width', 0);
|
$row['avatar_width'] = $this->request->variable('avatar_gravatar_width', 0);
|
||||||
$row['avatar_height'] = $this->request->variable('avatar_gravatar_height', 0);
|
$row['avatar_height'] = $this->request->variable('avatar_gravatar_height', 0);
|
||||||
|
|
||||||
if (!function_exists('user_add'))
|
if (!function_exists('validate_data'))
|
||||||
{
|
{
|
||||||
require($this->phpbb_root_path . 'includes/functions_user' . $this->php_ext);
|
require($this->phpbb_root_path . 'includes/functions_user' . $this->php_ext);
|
||||||
}
|
}
|
||||||
|
@ -24,7 +24,7 @@ interface phpbb_avatar_driver_interface
|
|||||||
/**
|
/**
|
||||||
* Returns the name of the driver.
|
* Returns the name of the driver.
|
||||||
*
|
*
|
||||||
* @return string Name of wrapped driver.
|
* @return string Name of driver.
|
||||||
*/
|
*/
|
||||||
public function get_name();
|
public function get_name();
|
||||||
|
|
||||||
@ -50,10 +50,13 @@ interface phpbb_avatar_driver_interface
|
|||||||
/**
|
/**
|
||||||
* Prepare form for changing the settings of this avatar
|
* Prepare form for changing the settings of this avatar
|
||||||
*
|
*
|
||||||
* @param object $template Template object
|
* @param phpbb_template $template Template object
|
||||||
* @param array $row User data or group data that has been cleaned with
|
* @param array $row User data or group data that has been cleaned with
|
||||||
* phpbb_avatar_manager::clean_row
|
* phpbb_avatar_manager::clean_row
|
||||||
* @param array &$error Reference to an error array
|
* @param array &$error Reference to an error array that is filled by this
|
||||||
|
* function. Key values can either be a string with a language key or
|
||||||
|
* an array that will be passed to vsprintf() with the language key in
|
||||||
|
* the first array key.
|
||||||
*
|
*
|
||||||
* @return bool True if form has been successfully prepared
|
* @return bool True if form has been successfully prepared
|
||||||
*/
|
*/
|
||||||
@ -62,17 +65,22 @@ interface phpbb_avatar_driver_interface
|
|||||||
/**
|
/**
|
||||||
* Prepare form for changing the acp settings of this avatar
|
* Prepare form for changing the acp settings of this avatar
|
||||||
*
|
*
|
||||||
* @return array Array containing the acp settings
|
* @return array Array of configuration options as consumed by acp_board.
|
||||||
|
* The setting for enabling/disabling the avatar will be handled by
|
||||||
|
* the avatar manager.
|
||||||
*/
|
*/
|
||||||
public function prepare_form_acp();
|
public function prepare_form_acp();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Process form data
|
* Process form data
|
||||||
*
|
*
|
||||||
* @param object $template Template object
|
* @param phpbb_template $template Template object
|
||||||
* @param array $row User data or group data that has been cleaned with
|
* @param array $row User data or group data that has been cleaned with
|
||||||
* phpbb_avatar_manager::clean_row
|
* phpbb_avatar_manager::clean_row
|
||||||
* @param array &$error Reference to an error array
|
* @param array &$error Reference to an error array that is filled by this
|
||||||
|
* function. Key values can either be a string with a language key or
|
||||||
|
* an array that will be passed to vsprintf() with the language key in
|
||||||
|
* the first array key.
|
||||||
*
|
*
|
||||||
* @return array Array containing the avatar data as follows:
|
* @return array Array containing the avatar data as follows:
|
||||||
* ['avatar'], ['avatar_width'], ['avatar_height']
|
* ['avatar'], ['avatar_width'], ['avatar_height']
|
||||||
@ -85,14 +93,15 @@ interface phpbb_avatar_driver_interface
|
|||||||
* @param array $row User data or group data that has been cleaned with
|
* @param array $row User data or group data that has been cleaned with
|
||||||
* phpbb_avatar_manager::clean_row
|
* phpbb_avatar_manager::clean_row
|
||||||
*
|
*
|
||||||
* @return bool True if avatar has been deleted or there is no need to delete
|
* @return bool True if avatar has been deleted or there is no need to delete,
|
||||||
|
* i.e. when the avatar is not hosted locally.
|
||||||
*/
|
*/
|
||||||
public function delete($row);
|
public function delete($row);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the avatars template name
|
* Get the avatar driver's template name
|
||||||
*
|
*
|
||||||
* @return string Avatar's template name
|
* @return string Avatar driver's template name
|
||||||
*/
|
*/
|
||||||
public function get_template_name();
|
public function get_template_name();
|
||||||
}
|
}
|
||||||
|
@ -174,7 +174,7 @@ class phpbb_avatar_driver_local extends phpbb_avatar_driver
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ksort($avatar_list);
|
ksort($avatar_list);
|
||||||
|
|
||||||
if ($this->cache != null)
|
if ($this->cache != null)
|
||||||
{
|
{
|
||||||
|
@ -61,7 +61,7 @@ class phpbb_avatar_driver_remote extends phpbb_avatar_driver
|
|||||||
$url = 'http://' . $url;
|
$url = 'http://' . $url;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!function_exists('user_add'))
|
if (!function_exists('validate_data'))
|
||||||
{
|
{
|
||||||
require($this->phpbb_root_path . 'includes/functions_user' . $this->php_ext);
|
require($this->phpbb_root_path . 'includes/functions_user' . $this->php_ext);
|
||||||
}
|
}
|
||||||
|
@ -85,16 +85,11 @@ class phpbb_avatar_manager
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* There is no need to handle invalid avatar types as the following code
|
||||||
|
* will cause a ServiceNotFoundException if the type does not exist
|
||||||
|
*/
|
||||||
$driver = $this->container->get($avatar_type);
|
$driver = $this->container->get($avatar_type);
|
||||||
if ($driver !== false)
|
|
||||||
{
|
|
||||||
return $driver;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
$message = "Invalid avatar driver class name '%s' provided.";
|
|
||||||
trigger_error(sprintf($message, $avatar_type));
|
|
||||||
}
|
|
||||||
|
|
||||||
return $driver;
|
return $driver;
|
||||||
}
|
}
|
||||||
|
@ -545,7 +545,7 @@ class ucp_profile
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case 'avatar':
|
case 'avatar':
|
||||||
if (!function_exists('display_forums'))
|
if (!function_exists('get_user_avatar'))
|
||||||
{
|
{
|
||||||
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
|
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user