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',
],
],
'ads-image' => [
'title' => 'visiosoft.module.advs::section.ads-image',
'ads_image' => [
'title' => 'visiosoft.module.advs::section.ads_image',
'fields' => [
'image_resize_backend',
'full_image_width',

View File

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

View File

@ -44,5 +44,5 @@ return [
'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
{
public $uploader;
public $folders;
public $files;
use DispatchesJobs;