fixed comments

This commit is contained in:
vedatakd 2020-10-06 16:58:25 +03:00
parent 540bdac2a6
commit c885f1c814
4 changed files with 3 additions and 10 deletions

View File

@ -32,8 +32,8 @@ return [
'listing_page_image', 'listing_page_image',
], ],
], ],
'ads-image' => [ 'ads_image' => [
'title' => 'visiosoft.module.advs::section.ads-image', 'title' => 'visiosoft.module.advs::section.ads_image',
'fields' => [ 'fields' => [
'image_resize_backend', 'image_resize_backend',
'full_image_width', 'full_image_width',

View File

@ -192,7 +192,6 @@ return [
], ],
//Image Settings //Image Settings
'image_resize_backend' => [ 'image_resize_backend' => [
'type' => 'anomaly.field_type.boolean', 'type' => 'anomaly.field_type.boolean',
'config' => [ 'config' => [
@ -205,7 +204,6 @@ return [
'default_value' => 800, 'default_value' => 800,
], ],
], ],
'full_image_height' => [ 'full_image_height' => [
'type' => 'anomaly.field_type.integer', 'type' => 'anomaly.field_type.integer',
'config' => [ 'config' => [
@ -273,9 +271,6 @@ return [
'type' => 'anomaly.field_type.file', 'type' => 'anomaly.field_type.file',
'bind' => 'adv.watermark_image', 'bind' => 'adv.watermark_image',
'env' => 'ADV_WATERMARK_IMAGE', 'env' => 'ADV_WATERMARK_IMAGE',
'config' => [
'default_value' => '',
],
], ],
'watermark_position' => [ 'watermark_position' => [
'type' => 'anomaly.field_type.select', 'type' => 'anomaly.field_type.select',

View File

@ -44,5 +44,5 @@ return [
'options' => [ 'options' => [
'title' => 'Options', 'title' => 'Options',
], ],
'ads-image' => 'Ads Image', 'ads_image' => 'Ads Image',
]; ];

View File

@ -24,9 +24,7 @@ use Anomaly\FilesModule\File\Contract\FileRepositoryInterface;
class UploadController extends AdminController class UploadController extends AdminController
{ {
public $uploader; public $uploader;
public $folders; public $folders;
public $files; public $files;
use DispatchesJobs; use DispatchesJobs;