OAIDAO::getSection PHP Method

getSection() public method

Cached function to get a journal section
public getSection ( $sectionId ) : object
$sectionId int
return object
    function &getSection($sectionId)
    {
        if (!isset($this->sectionCache[$sectionId])) {
            $this->sectionCache[$sectionId] = $this->sectionDao->getById($sectionId);
        }
        return $this->sectionCache[$sectionId];
    }