ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "ApplicationTypeFrontend.php"
Full Path: /home/zcziejy/ryadselyen/Nextend/SmartSlider3/Application/Frontend/ApplicationTypeFrontend.php
File size: 994 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\SmartSlider3\Application\Frontend;
use Nextend\Framework\Application\AbstractApplicationType;
use Nextend\Framework\ResourceTranslator\ResourceTranslator;
use Nextend\SmartSlider3\Application\Frontend\Slider\ControllerPreRenderSlider;
use Nextend\SmartSlider3\Application\Frontend\Slider\ControllerSlider;
class ApplicationTypeFrontend extends AbstractApplicationType {
protected $key = 'frontend';
public function __construct($application) {
ResourceTranslator::createResource('$system$', self::getAssetsPath(), self::getAssetsUri());
parent::__construct($application);
}
protected function getControllerSlider() {
return new ControllerSlider($this);
}
protected function getControllerPreRenderSlider() {
return new ControllerPreRenderSlider($this);
}
protected function getDefaultController($controllerName, $ajax = false) {
// TODO: Implement getDefaultController() method.
}
}