OEModule\OphCiExamination\models\Element_OphCiExamination_ClinicOutcome::getLetter_fup PHP 메소드

getLetter_fup() 공개 메소드

Returns the follow up period information.
public getLetter_fup ( ) : string
리턴 string
    public function getLetter_fup()
    {
        $text = array();
        $text[] = $this->getFollowUp();
        $text[] = $this->role->name;
        if ($this->role_comments) {
            $text[] = '(' . $this->role_comments . ')';
        }
        return implode(' ', $text);
    }