8889841csmart-slider-3/Nextend/SmartSlider3/Application/Admin/Generator/ViewGeneratorCreateStep3Sources.php000064400000004766150515541170040547 0ustar00home/clixcotz/adca.clix.co.tz/wp-content/pluginslayout = new LayoutDefault($this); if ($this->groupID) { $this->layout->addBreadcrumb(Sanitize::esc_html($this->groupTitle), 'ssi_16 ssi_16--folderclosed', $this->getUrlSliderEdit($this->groupID)); } $this->layout->addBreadcrumb(Sanitize::esc_html($this->slider['title']), 'ssi_16 ssi_16--image', $this->getUrlSliderEdit($this->slider['id'], $this->groupID)); $this->layout->addBreadcrumb(n2_('Add dynamic slides'), '', $this->getUrlGeneratorCreate($this->slider['id'], $this->groupID)); $this->layout->addBreadcrumb($this->generatorGroup->getLabel(), ''); $blockHeader = new BlockHeader($this); $blockHeader->setHeading(n2_('Add dynamic slides') . ': ' . $this->generatorGroup->getLabel()); $this->layout->addContentBlock($blockHeader); $this->layout->addContent($this->render('CreateStep3Sources')); $this->layout->render(); } /** * @param int $groupID * @param string $groupTitle */ public function setGroupData($groupID, $groupTitle) { $this->groupID = $groupID; $this->groupTitle = $groupTitle; } /** * @return array */ public function getSlider() { return $this->slider; } /** * @param array $slider */ public function setSlider($slider) { $this->slider = $slider; } /** * @return int */ public function getSliderID() { return $this->slider['id']; } /** * @return AbstractGeneratorGroup */ public function getGeneratorGroup() { return $this->generatorGroup; } /** * @param AbstractGeneratorGroup $generatorGroup */ public function setGeneratorGroup($generatorGroup) { $this->generatorGroup = $generatorGroup; } }