: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
namespace Nextend\SmartSlider3\Renderable;
use Nextend\Framework\View\Html;
use Nextend\SmartSlider3\Renderable\Component\ComponentCol;
use Nextend\SmartSlider3\Renderable\Component\ComponentContent;
use Nextend\SmartSlider3\Renderable\Component\ComponentLayer;
use Nextend\SmartSlider3\Renderable\Component\ComponentRow;
use Nextend\SmartSlider3\Renderable\Item\AbstractItemFrontend;
abstract class AbstractRenderableOwner {
public $underEdit = false;
* @var AbstractRenderable
/** @var string Used for generators when multiple slides might contain the same unique class */
* @return AbstractRenderable
public function getRenderable() {
return $this->renderable;
public abstract function getElementID();
public function isComponentVisible($generatorVisibleVariable) {
public function fill($value) {
public function fillLayers(&$layers) {
for ($i = 0; $i < count($layers); $i++) {
if (isset($layers[$i]['type'])) {
switch ($layers[$i]['type']) {
$this->fillLayers($layers[$i]['layers']);
ComponentContent::getFilled($this, $layers[$i]);
ComponentRow::getFilled($this, $layers[$i]);
ComponentCol::getFilled($this, $layers[$i]);
$this->fillLayers($layers[$i]['layers']);
ComponentLayer::getFilled($this, $layers[$i]);
ComponentLayer::getFilled($this, $layers[$i]);
public function isLazyLoadingEnabled() {
* @param AbstractItemFrontend $item
* @param array $attributes
public function renderImage($item, $src, $attributes = array(), $pictureAttributes = array()) {
return Html::image($src, $attributes);
public abstract function addScript($script, $name = false);
public abstract function isScriptAdded($name);
public abstract function addLess($file, $context);
public abstract function addCSS($css);
public abstract function addDeviceCSS($device, $css);
public abstract function addFont($font, $mode, $pre = null);
public abstract function addStyle($style, $mode, $pre = null);
public abstract function addImage($imageUrl);
public abstract function isAdmin();
public abstract function getAvailableDevices();