| 123456789101112131415161718192021222324 |
- <?php
- /*
- * This file is part of the Dektrium project.
- *
- * (c) Dektrium project <http://github.com/dektrium>
- *
- * For the full copyright and license information, please view the LICENSE.md
- * file that was distributed with this source code.
- */
- /**
- * @var $this yii\web\View
- * @var $title string
- * @var $module dektrium\user\Module
- */
- $this->title = $title;
- ?>
- <?= $this->render('/_alert', [
- 'module' => $module,
- ]) ?>
|