Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,18 @@
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;

return [
//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],
];
18 changes: 18 additions & 0 deletions dump/data-0-bootstrap.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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;
1 change: 1 addition & 0 deletions dump/data-1-settings_store.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down