diff --git a/config/bundles.php b/config/bundles.php index c6211258..450d245e 100644 --- a/config/bundles.php +++ b/config/bundles.php @@ -5,6 +5,7 @@ use Pimcore\Bundle\DataHubBundle\PimcoreDataHubBundle; use Pimcore\Bundle\EcommerceFrameworkBundle\PimcoreEcommerceFrameworkBundle; use Pimcore\Bundle\EcommerceFrameworkBundle\PimcorePaymentProviderPayPalSmartPaymentButtonBundle; +use Pimcore\Bundle\GlossaryBundle\PimcoreGlossaryBundle; use Pimcore\Bundle\ObjectMergerBundle\ObjectMergerBundle; use Web2PrintToolsBundle\Web2PrintToolsBundle; @@ -12,9 +13,10 @@ //Twig\Extra\TwigExtraBundle\TwigExtraBundle::class => ['all' => true], PimcoreEcommerceFrameworkBundle::class => ['all' => true], PimcoreCustomerManagementFrameworkBundle::class => ['all' => true], + PimcoreGlossaryBundle::class => ['all' => true], PimcorePaymentProviderPayPalSmartPaymentButtonBundle::class => ['all' => true], + PimcoreDataHubBundle::class => ['all' => true], OutputDataConfigToolkitBundle::class => ['all' => true], Web2PrintToolsBundle::class => ['all' => true], - PimcoreDataHubBundle::class => ['all' => true], ObjectMergerBundle::class => ['all' => true], ]; diff --git a/dump/data-0-bootstrap.sql b/dump/data-0-bootstrap.sql index 465efbf7..e112edc7 100644 --- a/dump/data-0-bootstrap.sql +++ b/dump/data-0-bootstrap.sql @@ -3147,3 +3147,21 @@ CREATE TABLE `shop_productindex_relations` ( PRIMARY KEY (`src`,`dest`,`fieldname`,`type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_bin; + + +DROP TABLE IF EXISTS `glossary`; +CREATE TABLE IF NOT EXISTS `glossary` ( + `id` int(11) unsigned NOT NULL AUTO_INCREMENT, + `language` varchar(10) DEFAULT NULL, + `casesensitive` tinyint(1) DEFAULT NULL, + `exactmatch` tinyint(1) DEFAULT NULL, + `text` varchar(255) DEFAULT NULL, + `link` varchar(255) DEFAULT NULL, + `abbr` varchar(255) DEFAULT NULL, + `site` int(11) unsigned DEFAULT NULL, + `creationDate` int(11) unsigned DEFAULT '0', + `modificationDate` int(11) unsigned DEFAULT '0', + PRIMARY KEY (`id`), + KEY `language` (`language`), + KEY `site` (`site`) +) DEFAULT CHARSET=utf8mb4; \ No newline at end of file diff --git a/dump/data-1-settings_store.sql b/dump/data-1-settings_store.sql index 872b5292..8036b219 100644 --- a/dump/data-1-settings_store.sql +++ b/dump/data-1-settings_store.sql @@ -26,6 +26,7 @@ INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('assets','pimcor INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('BUNDLE_INSTALLED__CustomerManagementFrameworkBundle\\PimcoreCustomerManagementFrameworkBundle','pimcore','1','bool'); INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('BUNDLE_INSTALLED__Pimcore\\Bundle\\DataHubBundle\\PimcoreDataHubBundle','pimcore','1','bool'); INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('BUNDLE_INSTALLED__Web2PrintToolsBundle\\Web2PrintToolsBundle','pimcore','1','bool'); +INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('BUNDLE_INSTALLED__Pimcore\\Bundle\\GlossaryBundle\\PimcoreGlossaryBundle','pimcore','1','bool'); INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('cart','pimcore_image_thumbnails','{\"items\":[{\"method\":\"scaleByWidth\",\"arguments\":{\"width\":90,\"forceResize\":false}}],\"medias\":[],\"name\":\"cart\",\"description\":\"\",\"group\":\"E-Commerce\",\"format\":\"SOURCE\",\"quality\":85,\"highResolution\":0,\"preserveColor\":false,\"preserveMetaData\":false,\"rasterizeSVG\":false,\"downloadable\":false,\"modificationDate\":1643107933,\"creationDate\":1562252277,\"preserveAnimation\":false}','string'); INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('content','pimcore_image_thumbnails','{\"items\":[{\"method\":\"scaleByWidth\",\"arguments\":{\"width\":1140,\"forceResize\":false}}],\"medias\":[],\"name\":\"content\",\"description\":\"\",\"group\":\"Areas\",\"format\":\"SOURCE\",\"quality\":95,\"highResolution\":0,\"preserveColor\":false,\"preserveMetaData\":false,\"rasterizeSVG\":false,\"downloadable\":false,\"modificationDate\":1643107170,\"creationDate\":1563542883,\"preserveAnimation\":false}','string'); INSERT INTO settings_store (`id`,`scope`,`data`,`type`) VALUES ('content','pimcore_video_thumbnails','{\"items\":[{\"method\":\"scaleByWidth\",\"arguments\":{\"width\":1110}}],\"medias\":[],\"name\":\"content\",\"description\":\"\",\"group\":\"\",\"videoBitrate\":450,\"audioBitrate\":128,\"modificationDate\":1643207257,\"creationDate\":1565353556}','string');