slideMaster = $pSlideMaster; // Shape collection $this->shapeCollection = new \ArrayObject(); // Set identifier $this->identifier = md5(rand(0, 9999) . time()); // Set a basic colorMap $this->colorMap = new ColorMap(); } /** * @return int */ public function getLayoutName() { return $this->layoutName; } /** * @param int $layoutName * @return SlideLayout */ public function setLayoutName($layoutName) { $this->layoutName = $layoutName; return $this; } /** * @return SlideMaster */ public function getSlideMaster() { return $this->slideMaster; } }