25 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			479 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * @var \Da\User\Model\Permission
 | |
|  * @var $this                     yii\web\View
 | |
|  * @var $unassignedItems          string[]
 | |
|  */
 | |
| $this->title = Yii::t('user', 'Update permission');
 | |
| $this->params['breadcrumbs'][] = $this->title;
 | |
| 
 | |
| ?>
 | |
| 
 | |
| <?php $this->beginContent('@Da/User/resources/views/shared/admin_layout.php') ?>
 | |
| 
 | |
| <?= $this->render(
 | |
|     '_form',
 | |
|     [
 | |
|         'model' => $model,
 | |
|         'unassignedItems' => $unassignedItems,
 | |
|     ]
 | |
| ) ?>
 | |
| 
 | |
| <?php $this->endContent() ?>
 | |
| 
 |