OEModule\OphCiExamination\components\OphCiExamination_API::getLetterLaserManagementPlan PHP Method

getLetterLaserManagementPlan() public method

get the laser management plan.
Deprecation: since 1.4.10, user getLetterLaserManagementFindings($patient)
public getLetterLaserManagementPlan ( Patient $patient )
$patient Patient
    public function getLetterLaserManagementPlan($patient)
    {
        if ($episode = $patient->getEpisodeForCurrentSubspecialty()) {
            if ($m = $this->getElementForLatestEventInEpisode($episode, 'models\\Element_OphCiExamination_LaserManagement')) {
                return $m->getLetter_string();
            }
        }
    }
OphCiExamination_API