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 "AbstractGeneratorGroupConfiguration.php"
Full Path: /home/zcziejy/ryadselyen/Nextend/SmartSlider3/Generator/AbstractGeneratorGroupConfiguration.php
File size: 1.05 KB
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Nextend\SmartSlider3\Generator;
use Nextend\Framework\Pattern\MVCHelperTrait;
abstract class AbstractGeneratorGroupConfiguration {
/** @var AbstractGeneratorGroup */
protected $generatorGroup;
/**
* AbstractGeneratorGroupConfiguration constructor.
*
* @param AbstractGeneratorGroup $generatorGroup
*/
public function __construct($generatorGroup) {
$this->generatorGroup = $generatorGroup;
}
/**
* @return bool
*/
public abstract function wellConfigured();
/**
* @return array
*/
public abstract function getData();
/**
* @param $data
* @param bool $store
*/
public abstract function addData($data, $store = true);
/**
* @param MVCHelperTrait $MVCHelper
*/
public abstract function render($MVCHelper);
/**
* @param MVCHelperTrait $MVCHelper
*/
public abstract function startAuth($MVCHelper);
/**
* @param MVCHelperTrait $MVCHelper
*/
public abstract function finishAuth($MVCHelper);
}