Commit 65876dfe9a84af7878a90866693b24a4527708b6

Authored by Yarik
1 parent bc14df20

Pre stable ready

.gitignore
... ... @@ -34,7 +34,6 @@ phpunit.phar
34 34 # vagrant runtime
35 35 /.vagrant
36 36 /artweb/
37   -/storage
38 37 /common/config/settings.php
39 38 /frontend/web/hotline.xml
40 39 /frontend/web/nadavi.xml
... ...
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,
... ...
storage/.gitignore 0 → 100755
  1 +*
  2 +!.gitignore
... ...