mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 01:36:57 +02:00
[ticket/13882] Lazy load the notification avatars.
This moves them further down the waterfall, making the page load quicker. PHPBB3-13882
This commit is contained in:
@@ -104,7 +104,7 @@ class admin_activate_user extends \phpbb\notification\type\base
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->item_id);
|
||||
return $this->user_loader->get_avatar($this->item_id, false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -96,7 +96,7 @@ class group_request extends \phpbb\notification\type\base
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->item_id);
|
||||
return $this->user_loader->get_avatar($this->item_id, false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -100,7 +100,7 @@ class pm extends \phpbb\notification\type\base
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->get_data('from_user_id'));
|
||||
return $this->user_loader->get_avatar($this->get_data('from_user_id'), false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -165,7 +165,7 @@ class post extends \phpbb\notification\type\base
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->get_data('poster_id'));
|
||||
return $this->user_loader->get_avatar($this->get_data('poster_id'), false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -223,7 +223,7 @@ class report_pm extends \phpbb\notification\type\pm
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->get_data('reporter_id'));
|
||||
return $this->user_loader->get_avatar($this->get_data('reporter_id'), false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -130,7 +130,7 @@ class report_pm_closed extends \phpbb\notification\type\pm
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->get_data('closer_id'));
|
||||
return $this->user_loader->get_avatar($this->get_data('closer_id'), false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -196,7 +196,7 @@ class report_post extends \phpbb\notification\type\post_in_queue
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->get_data('reporter_id'));
|
||||
return $this->user_loader->get_avatar($this->get_data('reporter_id'), false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -137,7 +137,7 @@ class report_post_closed extends \phpbb\notification\type\post
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->get_data('closer_id'));
|
||||
return $this->user_loader->get_avatar($this->get_data('closer_id'), false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -119,7 +119,7 @@ class topic extends \phpbb\notification\type\base
|
||||
*/
|
||||
public function get_avatar()
|
||||
{
|
||||
return $this->user_loader->get_avatar($this->get_data('poster_id'));
|
||||
return $this->user_loader->get_avatar($this->get_data('poster_id'), false, true);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@@ -179,9 +179,10 @@ class user_loader
|
||||
* @param bool $query Should we query the database if this user has not yet been loaded?
|
||||
* Typically this should be left as false and you should make sure
|
||||
* you load users ahead of time with load_users()
|
||||
* @param bool @lazy If true, will be lazy loaded (requires JS)
|
||||
* @return string
|
||||
*/
|
||||
public function get_avatar($user_id, $query = false)
|
||||
public function get_avatar($user_id, $query = false, $lazy = false)
|
||||
{
|
||||
if (!($user = $this->get_user($user_id, $query)))
|
||||
{
|
||||
@@ -193,7 +194,7 @@ class user_loader
|
||||
include($this->phpbb_root_path . 'includes/functions_display.' . $this->php_ext);
|
||||
}
|
||||
|
||||
return get_user_avatar($user['user_avatar'], $user['user_avatar_type'], $user['user_avatar_width'], $user['user_avatar_height']);
|
||||
return get_user_avatar($user['user_avatar'], $user['user_avatar_type'], $user['user_avatar_width'], $user['user_avatar_height'], 'USER_AVATAR', false, $lazy);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user