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