![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/plugins/GrapesJsBuilderBundle/Config/ |
<?php declare(strict_types=1); return [ 'name' => 'GrapesJS Builder', 'description' => 'GrapesJS Builder with MJML support for Mautic', 'version' => '1.0.0', 'author' => 'Mautic Community', 'routes' => [ 'main' => [ 'grapesjsbuilder_upload' => [ 'path' => '/grapesjsbuilder/upload', 'controller' => 'MauticPlugin\GrapesJsBuilderBundle\Controller\FileManagerController::uploadAction', ], 'grapesjsbuilder_delete' => [ 'path' => '/grapesjsbuilder/delete', 'controller' => 'MauticPlugin\GrapesJsBuilderBundle\Controller\FileManagerController::deleteAction', ], 'grapesjsbuilder_assets' => [ 'path' => '/grapesjsbuilder/assets', 'controller' => 'MauticPlugin\GrapesJsBuilderBundle\Controller\FileManagerController::assetsAction', ], 'grapesjsbuilder_builder' => [ 'path' => '/grapesjsbuilder/{objectType}/{objectId}', 'controller' => 'MauticPlugin\GrapesJsBuilderBundle\Controller\GrapesJsController::builderAction', ], ], 'public' => [], 'api' => [], ], 'menu' => [], 'services' => [ 'other' => [ // Provides access to configured API keys, settings, field mapping, etc 'grapesjsbuilder.config' => [ 'class' => MauticPlugin\GrapesJsBuilderBundle\Integration\Config::class, 'arguments' => [ 'mautic.integrations.helper', ], ], ], 'sync' => [], 'helpers' => [ 'grapesjsbuilder.helper.filemanager' => [ 'class' => MauticPlugin\GrapesJsBuilderBundle\Helper\FileManager::class, 'arguments' => [ 'mautic.helper.file_uploader', 'mautic.helper.core_parameters', 'mautic.helper.paths', ], ], ], ], 'parameters' => [ 'image_path_exclude' => ['flags', 'mejs'], // exclude certain folders from showing in the image browser 'static_url' => '', // optional base url for images ], ];