• File: AbstractSmartSlider3Platform.php
  • Full Path: /home/atelipy/www/wpmain/plugins/smart-slider-3/Nextend/SmartSlider3/Platform/AbstractSmartSlider3Platform.php
  • File size: 575 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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();
    }
}