Skip to content

Commit

Permalink
[Task]: Integrate Quill Bundle (#610)
Browse files Browse the repository at this point in the history
* Task: add quill

* Update templates/snippets/standard-teaser.html.twig

Co-authored-by: Sebastian Blank <[email protected]>

---------

Co-authored-by: Sebastian Blank <[email protected]>
  • Loading branch information
robertSt7 and blankse authored Dec 9, 2024
1 parent 026442f commit a1bd4ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"pimcore/ecommerce-framework-bundle": "*",
"pimcore/web-to-print-bundle": "*",
"pimcore/newsletter-bundle": "*",
"pimcore/quill-bundle": "*",
"symfony/runtime": "^6.2",
"symfony/intl": "^6.2",
"symfony/dotenv": "^6.2",
Expand Down
4 changes: 2 additions & 2 deletions config/bundles.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
use Pimcore\Bundle\CustomReportsBundle\PimcoreCustomReportsBundle;
use Pimcore\Bundle\ApplicationLoggerBundle\PimcoreApplicationLoggerBundle;
use Pimcore\Bundle\PersonalizationBundle\PimcorePersonalizationBundle;
use Pimcore\Bundle\TinymceBundle\PimcoreTinymceBundle;
use Pimcore\Bundle\QuillBundle\PimcoreQuillBundle;
use Pimcore\Bundle\GenericExecutionEngineBundle\PimcoreGenericExecutionEngineBundle;

return [
Expand All @@ -40,7 +40,7 @@
PimcoreGoogleMarketingBundle::class => ['all' => true],
PimcoreApplicationLoggerBundle::class => ['all' => true],
PimcoreWebToPrintBundle::class => ['all' => true],
PimcoreTinymceBundle::class => ['all' => true],
PimcoreQuillBundle::class => ['all' => true],
PimcoreStaticRoutesBundle::class => ['all' => true],
PimcoreNewsletterBundle::class => ['all' => true],
PimcoreWordExportBundle::class => ['all' => true],
Expand Down
3 changes: 2 additions & 1 deletion templates/snippets/standard-teaser.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
<h4 class="card-title pricing-card-title text-uppercase">{{ pimcore_input('title' ~ suffix) }}</h4>
<p class="card-text">
{{
pimcore_wysiwyg('text' ~ suffix, {
pimcore_wysiwyg('text' ~ suffix, {
height: 100,
enterMode: 2,
theme: "bubble"
})
}}
</p>
Expand Down

0 comments on commit a1bd4ae

Please sign in to comment.