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 | 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 | 6 | use yii\helpers\Html; |
7 | 7 | use yii\web\View; |
8 | 8 | use yii\widgets\ActiveForm; |
... | ... | @@ -27,7 +27,7 @@ |
27 | 27 | |
28 | 28 | <?= LanguageForm::widget([ |
29 | 29 | 'modelLangs' => $modelLangs, |
30 | - 'formView' => '@backend/views/seo-category/_form_language', | |
30 | + 'formView' => '@artweb/artbox/seo/views/seo-category/_form_language', | |
31 | 31 | 'form' => $form, |
32 | 32 | ]) ?> |
33 | 33 | ... | ... |
views/seo-category/_form_language.php
views/seo-category/create.php
views/seo-category/index.php
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | |
7 | 7 | /** |
8 | 8 | * @var yii\web\View $this |
9 | - * @var common\models\SeoCategorySearch $searchModel | |
9 | + * @var artweb\artbox\seo\models\SeoCategorySearch $searchModel | |
10 | 10 | * @var yii\data\ActiveDataProvider $dataProvider |
11 | 11 | */ |
12 | 12 | $this->title = Yii::t('app', 'Seo Categories'); | ... | ... |
views/seo-category/update.php
views/seo-dynamic/_form.php
1 | 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 | 6 | use yii\helpers\Html; |
7 | 7 | use yii\web\View; |
8 | 8 | use yii\widgets\ActiveForm; |
... | ... | @@ -38,7 +38,7 @@ |
38 | 38 | |
39 | 39 | <?= LanguageForm::widget([ |
40 | 40 | 'modelLangs' => $modelLangs, |
41 | - 'formView' => '@backend/views/seo-dynamic/_form_language', | |
41 | + 'formView' => '@artweb/artbox/seo/views/seo-dynamic/_form_language', | |
42 | 42 | 'form' => $form, |
43 | 43 | ]) ?> |
44 | 44 | ... | ... |
views/seo-dynamic/_form_language.php
views/seo-dynamic/create.php
1 | 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 | 6 | use yii\helpers\Html; |
7 | 7 | use yii\helpers\Url; |
8 | 8 | use yii\web\View; | ... | ... |
views/seo-dynamic/index.php
1 | 1 | <?php |
2 | 2 | |
3 | - use common\models\SeoCategory; | |
3 | + use artweb\artbox\seo\models\SeoCategory; | |
4 | 4 | use yii\helpers\Html; |
5 | 5 | use yii\grid\GridView; |
6 | 6 | use yii\helpers\Url; |
7 | 7 | |
8 | 8 | /** |
9 | 9 | * @var yii\web\View $this |
10 | - * @var common\models\SeoDynamicSearch $searchModel | |
10 | + * @var artweb\artbox\seo\models\SeoDynamicSearch $searchModel | |
11 | 11 | * @var yii\data\ActiveDataProvider $dataProvider |
12 | 12 | * @var SeoCategory $seo_category |
13 | 13 | */ | ... | ... |
views/seo-dynamic/update.php
1 | 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 | 6 | use yii\helpers\Html; |
7 | 7 | use yii\web\View; |
8 | 8 | ... | ... |
views/seo-dynamic/view.php
1 | 1 | <?php |
2 | 2 | |
3 | - use common\models\SeoCategory; | |
3 | + use artweb\artbox\seo\models\SeoCategory; | |
4 | 4 | use yii\helpers\Html; |
5 | 5 | use yii\widgets\DetailView; |
6 | 6 | |
7 | 7 | /** |
8 | 8 | * @var yii\web\View $this |
9 | - * @var common\models\SeoDynamic $model | |
9 | + * @var artweb\artbox\seo\models\SeoDynamic $model | |
10 | 10 | * @var SeoCategory $seo_category |
11 | 11 | */ |
12 | 12 | $this->title = $model->lang->title; | ... | ... |
views/seo/_form.php
1 | 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 | 6 | use yii\helpers\Html; |
7 | 7 | use yii\web\View; |
8 | 8 | use yii\widgets\ActiveForm; |
... | ... | @@ -24,7 +24,7 @@ |
24 | 24 | |
25 | 25 | <?= LanguageForm::widget([ |
26 | 26 | 'modelLangs' => $modelLangs, |
27 | - 'formView' => '@backend/views/seo/_form_language', | |
27 | + 'formView' => '@artweb/artbox/seo/views/seo/_form_language', | |
28 | 28 | 'form' => $form, |
29 | 29 | ]) ?> |
30 | 30 | ... | ... |
views/seo/_form_language.php
views/seo/create.php
views/seo/index.php
views/seo/update.php