Your IP : 10.10.0.253


Current Path : /var/www/libraries/smartslider3/src/SmartSlider3/Platform/
Upload File :
Current File : /var/www/libraries/smartslider3/src/SmartSlider3/Platform/AbstractSmartSlider3Platform.php

<?php


namespace Nextend\SmartSlider3\Platform;


use Nextend\Framework\Pattern\GetAssetsPathTrait;
use Nextend\Framework\Pattern\SingletonTrait;

abstract class AbstractSmartSlider3Platform {

    use SingletonTrait, GetAssetsPathTrait;

    public abstract function start();

    /**
     * @return string
     */
    public abstract function getAdminUrl();

    /**
     * @return string
     */
    public abstract function getAdminAjaxUrl();

    /**
     * @return string
     */
    public function getNetworkAdminUrl() {

        return $this->getAdminUrl();
    }
}