OEModule\OphCiExamination\models\Element_OphCiExamination_ClinicOutcome::getLetter_fup PHP Method

getLetter_fup() public method

Returns the follow up period information.
public getLetter_fup ( ) : string
return 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);
    }