galleries[$marker] = $content; } /** * Retrieve source content of a gallery identified by Parser marker id */ public function getGallery( $marker ) { if ( isset( $this->galleries[$marker] ) ) { return $this->galleries[$marker]; } return null; } /** * @return boolean */ public function isFirstInfoboxAlredyRendered() { return $this->firstInfoboxAlredyRendered; } /** * @param boolean $firstInfoboxAlredyRendered */ public function setFirstInfoboxAlredyRendered( $firstInfoboxAlredyRendered ) { $this->firstInfoboxAlredyRendered = $firstInfoboxAlredyRendered; } }