Commit 65876dfe9a84af7878a90866693b24a4527708b6
1 parent
bc14df20
Pre stable ready
Showing
3 changed files
with
4 additions
and
2 deletions
Show diff stats
.gitignore
@@ -34,7 +34,6 @@ phpunit.phar | @@ -34,7 +34,6 @@ phpunit.phar | ||
34 | # vagrant runtime | 34 | # vagrant runtime |
35 | /.vagrant | 35 | /.vagrant |
36 | /artweb/ | 36 | /artweb/ |
37 | -/storage | ||
38 | /common/config/settings.php | 37 | /common/config/settings.php |
39 | /frontend/web/hotline.xml | 38 | /frontend/web/hotline.xml |
40 | /frontend/web/nadavi.xml | 39 | /frontend/web/nadavi.xml |
backend/views/settings/_main_tab.php
1 | <?php | 1 | <?php |
2 | + use artbox\core\components\imagemanager\components\ImageManagerInputWidget; | ||
2 | use common\models\Settings; | 3 | use common\models\Settings; |
3 | use yii\bootstrap\ActiveForm; | 4 | use yii\bootstrap\ActiveForm; |
4 | use yii\web\View; | 5 | use yii\web\View; |
@@ -12,7 +13,7 @@ | @@ -12,7 +13,7 @@ | ||
12 | ->textInput(); | 13 | ->textInput(); |
13 | echo $form->field($model, 'logo') | 14 | echo $form->field($model, 'logo') |
14 | ->widget( | 15 | ->widget( |
15 | - \noam148\imagemanager\components\ImageManagerInputWidget::className(), | 16 | + ImageManagerInputWidget::className(), |
16 | [ | 17 | [ |
17 | 'showPreview' => true, | 18 | 'showPreview' => true, |
18 | 'showDeletePickedImageConfirm' => false, | 19 | 'showDeletePickedImageConfirm' => false, |