| 1 |
<?php |
| 2 |
|
| 3 |
namespace Codelight\GDPR\Installer\Steps; |
| 4 |
|
| 5 |
use Codelight\GDPR\Installer\InstallerStep; |
| 6 |
use Codelight\GDPR\Installer\InstallerStepInterface; |
| 7 |
|
| 8 |
/** |
| 9 |
* Handle the first step on installer screen |
| 10 |
* |
| 11 |
* Class Welcome |
| 12 |
* |
| 13 |
* @package Codelight\GDPR\Installer\Steps |
| 14 |
*/ |
| 15 |
class Welcome extends InstallerStep implements InstallerStepInterface |
| 16 |
{ |
| 17 |
protected $slug = 'welcome'; |
| 18 |
|
| 19 |
protected $type = 'wizard'; |
| 20 |
|
| 21 |
protected $template = 'installer/steps/welcome'; |
| 22 |
|
| 23 |
protected $activeSteps = 0; |
| 24 |
|
| 25 |
protected function renderFooter() |
| 26 |
{ |
| 27 |
echo gdpr('view')->render('installer/footer', ['disableBackButton' => true]); |
| 28 |
} |
| 29 |
} |