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

getLetterIOPReadingBothFirst() public method

public getLetterIOPReadingBothFirst ( $patient )
    public function getLetterIOPReadingBothFirst($patient)
    {
        if ($episode = $patient->getEpisodeForCurrentSubspecialty()) {
            if ($iop = $this->getElementForLatestEventInEpisode($episode, 'models\\Element_OphCiExamination_IntraocularPressure')) {
                return $iop->getLetter_reading_first('right') . ' on the right, and ' . $iop->getLetter_reading_first('left') . ' on the left';
            }
        }
    }
OphCiExamination_API