Commit ba782a19fe2017c00e6e8e02f30633d90e283bd6

Authored by Yarik
1 parent aef3b793

Links fixed

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
1 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 4 use yii\web\View;
5 5 use yii\widgets\ActiveForm;
6 6  
... ...
views/seo-category/create.php
1 1 <?php
2 2  
3   - use common\models\SeoCategory;
4   - use common\models\SeoCategoryLang;
  3 + use artweb\artbox\seo\models\SeoCategory;
  4 + use artweb\artbox\seo\models\SeoCategoryLang;
5 5 use yii\helpers\Html;
6 6 use yii\web\View;
7 7  
... ...
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
1 1 <?php
2 2  
3   - use common\models\SeoCategory;
4   - use common\models\SeoCategoryLang;
  3 + use artweb\artbox\seo\models\SeoCategory;
  4 + use artweb\artbox\seo\models\SeoCategoryLang;
5 5 use yii\helpers\Html;
6 6 use yii\web\View;
7 7  
... ...
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
1 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 4 use mihaildev\ckeditor\CKEditor;
5 5 use mihaildev\elfinder\ElFinder;
6 6 use yii\web\View;
... ...
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
1 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 4 use mihaildev\ckeditor\CKEditor;
5 5 use mihaildev\elfinder\ElFinder;
6 6 use yii\web\View;
... ...
views/seo/create.php
1 1 <?php
2 2  
3   - use common\models\Seo;
4   - use common\models\SeoLang;
  3 + use artweb\artbox\seo\models\Seo;
  4 + use artweb\artbox\seo\models\SeoLang;
5 5 use yii\helpers\Html;
6 6 use yii\web\View;
7 7  
... ...
views/seo/index.php
... ... @@ -5,7 +5,7 @@
5 5  
6 6 /**
7 7 * @var yii\web\View $this
8   - * @var common\models\SeoSearch $searchModel
  8 + * @var artweb\artbox\seo\models\SeoSearch $searchModel
9 9 * @var yii\data\ActiveDataProvider $dataProvider
10 10 */
11 11 $this->title = Yii::t('app', 'Seo');
... ...
views/seo/update.php
1 1 <?php
2 2  
3   - use common\models\Seo;
4   - use common\models\SeoLang;
  3 + use artweb\artbox\seo\models\Seo;
  4 + use artweb\artbox\seo\models\SeoLang;
5 5 use yii\helpers\Html;
6 6 use yii\web\View;
7 7  
... ...
views/seo/view.php
... ... @@ -5,7 +5,7 @@
5 5  
6 6 /**
7 7 * @var yii\web\View $this
8   - * @var common\models\Seo $model
  8 + * @var artweb\artbox\seo\models\Seo $model
9 9 */
10 10 $this->title = $model->url;
11 11 $this->params[ 'breadcrumbs' ][] = [
... ...