Commit ba782a19fe2017c00e6e8e02f30633d90e283bd6
1 parent
aef3b793
Links fixed
Showing
17 changed files
with
39 additions
and
39 deletions
Show diff stats
views/seo-category/_form.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | - use common\models\SeoCategory; | ||
4 | - use common\models\SeoCategoryLang; | ||
5 | - use common\modules\language\widgets\LanguageForm; | 3 | + use artweb\artbox\seo\models\SeoCategory; |
4 | + use artweb\artbox\seo\models\SeoCategoryLang; | ||
5 | + use artweb\artbox\language\widgets\LanguageForm; | ||
6 | use yii\helpers\Html; | 6 | use yii\helpers\Html; |
7 | use yii\web\View; | 7 | use yii\web\View; |
8 | use yii\widgets\ActiveForm; | 8 | use yii\widgets\ActiveForm; |
@@ -27,7 +27,7 @@ | @@ -27,7 +27,7 @@ | ||
27 | 27 | ||
28 | <?= LanguageForm::widget([ | 28 | <?= LanguageForm::widget([ |
29 | 'modelLangs' => $modelLangs, | 29 | 'modelLangs' => $modelLangs, |
30 | - 'formView' => '@backend/views/seo-category/_form_language', | 30 | + 'formView' => '@artweb/artbox/seo/views/seo-category/_form_language', |
31 | 'form' => $form, | 31 | 'form' => $form, |
32 | ]) ?> | 32 | ]) ?> |
33 | 33 |
views/seo-category/_form_language.php
1 | <?php | 1 | <?php |
2 | - use common\models\SeoCategoryLang; | ||
3 | - use common\modules\language\models\Language; | 2 | + use artweb\artbox\seo\models\SeoCategoryLang; |
3 | + use artweb\artbox\language\models\Language; | ||
4 | use yii\web\View; | 4 | use yii\web\View; |
5 | use yii\widgets\ActiveForm; | 5 | use yii\widgets\ActiveForm; |
6 | 6 |
views/seo-category/create.php
views/seo-category/index.php
@@ -6,7 +6,7 @@ | @@ -6,7 +6,7 @@ | ||
6 | 6 | ||
7 | /** | 7 | /** |
8 | * @var yii\web\View $this | 8 | * @var yii\web\View $this |
9 | - * @var common\models\SeoCategorySearch $searchModel | 9 | + * @var artweb\artbox\seo\models\SeoCategorySearch $searchModel |
10 | * @var yii\data\ActiveDataProvider $dataProvider | 10 | * @var yii\data\ActiveDataProvider $dataProvider |
11 | */ | 11 | */ |
12 | $this->title = Yii::t('app', 'Seo Categories'); | 12 | $this->title = Yii::t('app', 'Seo Categories'); |
views/seo-category/update.php
views/seo-dynamic/_form.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | - use common\models\SeoDynamic; | ||
4 | - use common\models\SeoDynamicLang; | ||
5 | - use common\modules\language\widgets\LanguageForm; | 3 | + use artweb\artbox\seo\models\SeoDynamic; |
4 | + use artweb\artbox\seo\models\SeoDynamicLang; | ||
5 | + use artweb\artbox\language\widgets\LanguageForm; | ||
6 | use yii\helpers\Html; | 6 | use yii\helpers\Html; |
7 | use yii\web\View; | 7 | use yii\web\View; |
8 | use yii\widgets\ActiveForm; | 8 | use yii\widgets\ActiveForm; |
@@ -38,7 +38,7 @@ | @@ -38,7 +38,7 @@ | ||
38 | 38 | ||
39 | <?= LanguageForm::widget([ | 39 | <?= LanguageForm::widget([ |
40 | 'modelLangs' => $modelLangs, | 40 | 'modelLangs' => $modelLangs, |
41 | - 'formView' => '@backend/views/seo-dynamic/_form_language', | 41 | + 'formView' => '@artweb/artbox/seo/views/seo-dynamic/_form_language', |
42 | 'form' => $form, | 42 | 'form' => $form, |
43 | ]) ?> | 43 | ]) ?> |
44 | 44 |
views/seo-dynamic/_form_language.php
1 | <?php | 1 | <?php |
2 | - use common\models\SeoDynamicLang; | ||
3 | - use common\modules\language\models\Language; | 2 | + use artweb\artbox\seo\models\SeoDynamicLang; |
3 | + use artweb\artbox\language\models\Language; | ||
4 | use mihaildev\ckeditor\CKEditor; | 4 | use mihaildev\ckeditor\CKEditor; |
5 | use mihaildev\elfinder\ElFinder; | 5 | use mihaildev\elfinder\ElFinder; |
6 | use yii\web\View; | 6 | use yii\web\View; |
views/seo-dynamic/create.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | - use common\models\SeoCategory; | ||
4 | - use common\models\SeoDynamic; | ||
5 | - use common\models\SeoDynamicLang; | 3 | + use artweb\artbox\seo\models\SeoCategory; |
4 | + use artweb\artbox\seo\models\SeoDynamic; | ||
5 | + use artweb\artbox\seo\models\SeoDynamicLang; | ||
6 | use yii\helpers\Html; | 6 | use yii\helpers\Html; |
7 | use yii\helpers\Url; | 7 | use yii\helpers\Url; |
8 | use yii\web\View; | 8 | use yii\web\View; |
views/seo-dynamic/index.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | - use common\models\SeoCategory; | 3 | + use artweb\artbox\seo\models\SeoCategory; |
4 | use yii\helpers\Html; | 4 | use yii\helpers\Html; |
5 | use yii\grid\GridView; | 5 | use yii\grid\GridView; |
6 | use yii\helpers\Url; | 6 | use yii\helpers\Url; |
7 | 7 | ||
8 | /** | 8 | /** |
9 | * @var yii\web\View $this | 9 | * @var yii\web\View $this |
10 | - * @var common\models\SeoDynamicSearch $searchModel | 10 | + * @var artweb\artbox\seo\models\SeoDynamicSearch $searchModel |
11 | * @var yii\data\ActiveDataProvider $dataProvider | 11 | * @var yii\data\ActiveDataProvider $dataProvider |
12 | * @var SeoCategory $seo_category | 12 | * @var SeoCategory $seo_category |
13 | */ | 13 | */ |
views/seo-dynamic/update.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | - use common\models\SeoCategory; | ||
4 | - use common\models\SeoDynamic; | ||
5 | - use common\models\SeoDynamicLang; | 3 | + use artweb\artbox\seo\models\SeoCategory; |
4 | + use artweb\artbox\seo\models\SeoDynamic; | ||
5 | + use artweb\artbox\seo\models\SeoDynamicLang; | ||
6 | use yii\helpers\Html; | 6 | use yii\helpers\Html; |
7 | use yii\web\View; | 7 | use yii\web\View; |
8 | 8 |
views/seo-dynamic/view.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | - use common\models\SeoCategory; | 3 | + use artweb\artbox\seo\models\SeoCategory; |
4 | use yii\helpers\Html; | 4 | use yii\helpers\Html; |
5 | use yii\widgets\DetailView; | 5 | use yii\widgets\DetailView; |
6 | 6 | ||
7 | /** | 7 | /** |
8 | * @var yii\web\View $this | 8 | * @var yii\web\View $this |
9 | - * @var common\models\SeoDynamic $model | 9 | + * @var artweb\artbox\seo\models\SeoDynamic $model |
10 | * @var SeoCategory $seo_category | 10 | * @var SeoCategory $seo_category |
11 | */ | 11 | */ |
12 | $this->title = $model->lang->title; | 12 | $this->title = $model->lang->title; |
views/seo/_form.php
1 | <?php | 1 | <?php |
2 | 2 | ||
3 | - use common\models\Seo; | ||
4 | - use common\models\SeoLang; | ||
5 | - use common\modules\language\widgets\LanguageForm; | 3 | + use artweb\artbox\seo\models\Seo; |
4 | + use artweb\artbox\seo\models\SeoLang; | ||
5 | + use artweb\artbox\language\widgets\LanguageForm; | ||
6 | use yii\helpers\Html; | 6 | use yii\helpers\Html; |
7 | use yii\web\View; | 7 | use yii\web\View; |
8 | use yii\widgets\ActiveForm; | 8 | use yii\widgets\ActiveForm; |
@@ -24,7 +24,7 @@ | @@ -24,7 +24,7 @@ | ||
24 | 24 | ||
25 | <?= LanguageForm::widget([ | 25 | <?= LanguageForm::widget([ |
26 | 'modelLangs' => $modelLangs, | 26 | 'modelLangs' => $modelLangs, |
27 | - 'formView' => '@backend/views/seo/_form_language', | 27 | + 'formView' => '@artweb/artbox/seo/views/seo/_form_language', |
28 | 'form' => $form, | 28 | 'form' => $form, |
29 | ]) ?> | 29 | ]) ?> |
30 | 30 |
views/seo/_form_language.php
1 | <?php | 1 | <?php |
2 | - use common\models\SeoLang; | ||
3 | - use common\modules\language\models\Language; | 2 | + use artweb\artbox\seo\models\SeoLang; |
3 | + use artweb\artbox\language\models\Language; | ||
4 | use mihaildev\ckeditor\CKEditor; | 4 | use mihaildev\ckeditor\CKEditor; |
5 | use mihaildev\elfinder\ElFinder; | 5 | use mihaildev\elfinder\ElFinder; |
6 | use yii\web\View; | 6 | use yii\web\View; |
views/seo/create.php
views/seo/index.php
@@ -5,7 +5,7 @@ | @@ -5,7 +5,7 @@ | ||
5 | 5 | ||
6 | /** | 6 | /** |
7 | * @var yii\web\View $this | 7 | * @var yii\web\View $this |
8 | - * @var common\models\SeoSearch $searchModel | 8 | + * @var artweb\artbox\seo\models\SeoSearch $searchModel |
9 | * @var yii\data\ActiveDataProvider $dataProvider | 9 | * @var yii\data\ActiveDataProvider $dataProvider |
10 | */ | 10 | */ |
11 | $this->title = Yii::t('app', 'Seo'); | 11 | $this->title = Yii::t('app', 'Seo'); |
views/seo/update.php
views/seo/view.php
@@ -5,7 +5,7 @@ | @@ -5,7 +5,7 @@ | ||
5 | 5 | ||
6 | /** | 6 | /** |
7 | * @var yii\web\View $this | 7 | * @var yii\web\View $this |
8 | - * @var common\models\Seo $model | 8 | + * @var artweb\artbox\seo\models\Seo $model |
9 | */ | 9 | */ |
10 | $this->title = $model->url; | 10 | $this->title = $model->url; |
11 | $this->params[ 'breadcrumbs' ][] = [ | 11 | $this->params[ 'breadcrumbs' ][] = [ |