phpbb\notification\type\pm::get_title PHP 메소드

get_title() 공개 메소드

Get the HTML formatted title of this notification
public get_title ( ) : string
리턴 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);
    }