first
This commit is contained in:
@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
|
||||
namespace Nextend\SmartSlider3\Slider\Admin;
|
||||
|
||||
|
||||
use Nextend\SmartSlider3\Slider\Slide;
|
||||
|
||||
class AdminSlide extends Slide {
|
||||
|
||||
public function setSlidesParams() {
|
||||
$this->attributes['data-variables'] = json_encode($this->variables);
|
||||
parent::setSlidesParams();
|
||||
}
|
||||
|
||||
protected function addSlideLink() {
|
||||
|
||||
}
|
||||
|
||||
public function isVisible() {
|
||||
return true;
|
||||
}
|
||||
|
||||
protected function onCreate() {
|
||||
}
|
||||
|
||||
public function setCurrentlyEdited() {
|
||||
$this->underEdit = true;
|
||||
$this->classes .= ' n2-ss-currently-edited-slide';
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user