Paragraphs Editor
BundleSelectorInterface.php
Go to the documentation of this file.
1 <?php
2 
4 
6 
7 /**
8  * Represents a paragraphs ckeditor bundle selector plugin.
9  *
10  * Bundle Selector plugins are forms that allow the user to select which
11  * paragraph bundle they would like to insert into the editor. We leave this as
12  * a plugin based system so that it is easy to swap out different forms.
13  *
14  * For the purposes of making type hinting as explicit as possible, we define an
15  * interface for this even though it matches the existing form interface.
16  */
17 interface BundleSelectorInterface extends FormInterface {
18 }