phpbb\notification\type\pm::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()
    {
        $username = $this->user_loader->get_username($this->get_data('from_user_id'), 'no_profile');
        return $this->user->lang('NOTIFICATION_PM', $username);
    }