24 lines
		
	
	
		
			425 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			425 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?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 yii\web\View            $this
 | |
|  * @var dektrium\user\Module    $module
 | |
|  */
 | |
| 
 | |
| $this->title = $title;
 | |
| 
 | |
| ?>
 | |
| 
 | |
| <?= $this->render('/_alert', [
 | |
|     'module' => $module,
 | |
| ]);
 |