fix deprecations
This commit is contained in:
parent
5f1af41450
commit
1fea4e1eac
1 changed files with 18 additions and 3 deletions
|
@ -24,14 +24,29 @@ if (!defined('CON_FRAMEWORK')) {
|
|||
}
|
||||
|
||||
class cSetupMask {
|
||||
|
||||
/**
|
||||
* @var object Template
|
||||
*/
|
||||
private $_oTpl;
|
||||
|
||||
/**
|
||||
* @var object Template
|
||||
*/
|
||||
private $_oStepTemplate;
|
||||
|
||||
private $_sStepTemplate;
|
||||
|
||||
private $_iStep;
|
||||
|
||||
private $_bNavigationEnabled = false;
|
||||
|
||||
public function __construct($sStepTemplate, $iStep = false) {
|
||||
$this->_oTpl = new Template;
|
||||
$this->_oStepTemplate = new Template;
|
||||
$this->_oTpl = new Template();
|
||||
$this->_oStepTemplate = new Template();
|
||||
|
||||
$this->_sStepTemplate = $sStepTemplate;
|
||||
$this->_iStep = $iStep;
|
||||
$this->_bNavigationEnabled = false;
|
||||
}
|
||||
|
||||
public function setNavigation($sBackstep, $sNextstep) {
|
||||
|
|
Loading…
Reference in a new issue