block-bundle
block-bundle copied to clipboard
Custom template when creating a Block
So it would be nice to can customize any block by writing a template path on Sonata Admin, for example a SimpleBlock now needs to edit CmfBlockBundle:Block:block_simple_createphp.html.twig
(or without createphp) in order to customize a simple block, but it will affect every SimpleBlock
which sometimes is necessary to have independent templates...
I don't know if this feature exists, to change template of a single block, but I've not found it unfortunately.
you need to dig through sonata block bundle for this a bit i think.
or just try if it happens to work when you use $block->setSetting('template', $myTemplate)
. probably needs a custom widget or something. and you want your templates in a dropdown, not have some content editor paste template names into a textfield...