Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EZP-30386: [Alloy Editor] Custom Buttons #33

Merged
Merged
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
14 changes: 14 additions & 0 deletions src/bundle/DependencyInjection/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -168,8 +168,16 @@ private function addCustomStylesSection(NodeBuilder $ezRichTextNode)
* ezpublish:
* ezrichtext:
* alloy_editor:
* extra_plugins: [plugin1, plugin2]
* extra_buttons:
* paragraph: [button1, button2]
* embed: [button1]
* </code>
*
* Please note extra_buttons setting will be deprecated in eZ Platform 3.x.
* The alternative and more flexible solution will be introduced.
* So you will need to update Online Editor Extra Buttons as part of eZ Platform 3.x upgrade.
*
* @param \Symfony\Component\Config\Definition\Builder\NodeBuilder $ezRichTextNode
*
* @return \Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition
Expand All @@ -183,6 +191,12 @@ private function addAlloyEditorSection(NodeBuilder $ezRichTextNode)
->example(['plugin1', 'plugin2'])
->prototype('scalar')->end()
->end()
->arrayNode('extra_buttons')
->arrayPrototype()
->example(['button1', 'button2'])
->prototype('scalar')->end()
->end()
->end()
->end()
->end()
;
Expand Down