File "ViewIframe.php"
Full Path: /home2/sdektunc/cepali.edu.mx/wp-content/plugins/smart-slider-3/Nextend/SmartSlider3/Application/Frontend/Slider/ViewIframe.php
File size: 1.76 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\SmartSlider3\Application\Frontend\Slider;
use Nextend\Framework\View\AbstractView;
use Nextend\SmartSlider3\SliderManager\SliderManager;
class ViewIframe extends AbstractView {
/** @var string|integer */
protected $sliderIDorAlias;
/**
* @var integer
*/
protected $sliderID;
protected $isGroup = false;
protected $sliderHTML = '';
public function display() {
$this->getApplicationType()
->enqueueAssets();
$locale = setlocale(LC_NUMERIC, 0);
setlocale(LC_NUMERIC, "C");
$sliderManager = new SliderManager($this, $this->sliderIDorAlias, false);
$sliderManager->setUsage('iframe');
$this->sliderHTML = $sliderManager->render(true);
$slider = $sliderManager->getSlider();
if ($slider) {
$this->sliderID = $slider->sliderId;
$this->isGroup = $slider->isGroup();
}
setlocale(LC_NUMERIC, $locale);
// PHPCS - Content already escaped
echo $this->render('Iframe'); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
}
/**
* @return string|integer
*/
public function getSliderIDorAlias() {
return $this->sliderIDorAlias;
}
/**
* @param string|integer $sliderIDorAlias
*/
public function setSliderIDorAlias($sliderIDorAlias) {
$this->sliderIDorAlias = $sliderIDorAlias;
}
/**
* @return string already escaped
*/
public function getSliderHTML() {
return $this->sliderHTML;
}
/**
* @return int
*/
public function getSliderID() {
return $this->sliderID;
}
/**
* @return bool
*/
public function isGroup() {
return $this->isGroup;
}
}