You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							51 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							51 lines
						
					
					
						
							1.1 KiB
						
					
					
				<?php | 
						|
/** | 
						|
 * Created by Error202 | 
						|
 * Date: 10.07.2018 | 
						|
 */ | 
						|
 | 
						|
use kartik\form\ActiveForm; | 
						|
use yii\helpers\ArrayHelper; | 
						|
use yii\helpers\Html; | 
						|
 | 
						|
/** | 
						|
 * @var $this \yii\web\View | 
						|
 * @var $model \core\forms\menu\MenuSelectForm | 
						|
 * @var $menus \core\entities\menu\Menu[] | 
						|
 */ | 
						|
 | 
						|
$this->title = Yii::t('menu', 'Menu'); | 
						|
$this->params['breadcrumbs'][] = $this->title; | 
						|
?> | 
						|
 | 
						|
<div class="menu"> | 
						|
	<div class="box box-default"> | 
						|
		<div class="box-header with-border"><?= Yii::t('menu', 'Current Menu') ?></div> | 
						|
		<div class="box-body"> | 
						|
 | 
						|
			<div class="row"> | 
						|
				<div class="col-md-6"> | 
						|
					<?php $form = ActiveForm::begin([ | 
						|
						'enableClientValidation' => false, | 
						|
						'method' => 'get', | 
						|
						'id' => 'select_menu', | 
						|
					]); ?> | 
						|
 | 
						|
					<?= $form->field($model, 'id')->dropDownList(ArrayHelper::map($menus, 'id', 'name'), [ | 
						|
						'prompt' => Yii::t('menu', 'Select menu...'), | 
						|
						'onchange' => 'this.form.submit()', | 
						|
					])->label(false) ?> | 
						|
 | 
						|
					<?php ActiveForm::end(); ?> | 
						|
				</div> | 
						|
				<div class="col-md-2"> | 
						|
					<?= Html::a(Yii::t('menu', 'Create Menu'), ['menu/create'], [ | 
						|
						'class' => 'btn btn-success', | 
						|
					]) ?> | 
						|
				</div> | 
						|
			</div> | 
						|
 | 
						|
		</div> | 
						|
	</div> | 
						|
</div> | 
						|
 | 
						|
 |