1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-14 20:54:13 +02:00

Merge pull request #3653 from callumacrae/ticket/13882

[ticket/13882] Lazy load the notification avatars.
This commit is contained in:
Marc Alexander
2015-06-16 12:33:17 +02:00
13 changed files with 54 additions and 15 deletions

View File

@@ -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);
}
/**

View File

@@ -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);
}
/**

View File

@@ -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);
}
/**

View File

@@ -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);
}
/**

View File

@@ -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);
}
/**

View File

@@ -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);
}
/**

View File

@@ -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);
}
/**

View File

@@ -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);
}
/**

View File

@@ -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);
}
/**