31 lines
		
	
	
		
			585 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			585 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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';
 | 
						|
    }
 | 
						|
} |