phpbb\notification\type\topic::get_title PHP Method

get_title() public method

Get the HTML formatted title of this notification
public get_title ( ) : string
return string
    public function get_title()
    {
        if ($this->get_data('post_username')) {
            $username = $this->get_data('post_username');
        } else {
            $username = $this->user_loader->get_username($this->get_data('poster_id'), 'no_profile');
        }
        return $this->user->lang($this->language_key, $username);
    }