From 363450a62ca8fe316be1c2a544ff81d569aec7a8 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Wed, 15 May 2024 23:27:03 +0200 Subject: [PATCH] add doc for builder --- docs/utils/editors/builder.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/utils/editors/builder.md b/docs/utils/editors/builder.md index ee655e9..acc8706 100644 --- a/docs/utils/editors/builder.md +++ b/docs/utils/editors/builder.md @@ -80,6 +80,8 @@ class YourPage extends Page ## Creating custom block +The easy way is to run: `php bin/console make:builder-block`. + First, create a service which extends `App\Core\BuilderBlock\BuilderBlock` and tagged `builder_block.widget`. Then, implement the method `configure` as below.