/var/www/hkosl.com/aga/wp-content/plugins/smart-slider-3/library/smartslider/backend/fragments.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php

class N2SSBackendFragments {

    public static function 
tutorialFree() {
        
$appType N2Base::getApplication('smartslider')
                         ->
getApplicationType('backend');
        include 
dirname(__FILE__) . '/fragments/tutorial-free.phtml';
    }

    public static function 
sliderManager($groupID 0) {
        
$appType N2Base::getApplication('smartslider')
                         ->
getApplicationType('backend');
        include 
dirname(__FILE__) . '/fragments/slidermanager.phtml';
    }

    
/**
     * @param N2SmartSlider $sliderObj
     */
    
public static function slideManager($sliderObj) {
        
$appType N2Base::getApplication('smartslider')
                         ->
getApplicationType('backend');
        include 
dirname(__FILE__) . '/fragments/slidemanager.phtml';
    }

    
/**
     * @param array $sliderRow
     */
    
public static function slideManagerByRow($sliderRow) {
        
$appType   N2Base::getApplication('smartslider')
                           ->
getApplicationType('backend');
        
$sliderObj = new N2SmartSlider($sliderRow['id'], array());
        
$sliderObj->loadSliderParams();
        include 
dirname(__FILE__) . '/fragments/slidemanager.phtml';
    }

    public static function 
embedSliderManager($groupID$group$mode) {
        
$appType   N2Base::getApplication('smartslider')
                           ->
getApplicationType('backend');

        include 
dirname(__FILE__) . '/fragments/embedslidermanager.phtml';
    }
}