generate:plugin:ckeditorbutton
Génère un plugin de bouton CKEditor.
Utilisation:
drupal generate:plugin:ckeditorbutton [options]
gpc
Options disponibles
Option | Détails |
---|---|
--module | Le nom du module. |
--class | Nom de la classe du plugin |
--label | Label du plugin |
--plugin-id | ID du plugin. NOTE: Correspond au nom du plugin CKEditor. Il s'agit du premier argument de la fonction CKEDITOR.plugins.add() dans le fichier plugin.js. |
--buttons | CKEditor buttons. |
Exemples
Generate CKEditor button specifying the module name, the class, the label, its id, the button name and the icon path
drupal generate:plugin:ckeditorbutton \
--module="modulename" \
--class="DefaultCKEditorButton" \
--label="Default ckeditor button" \
--plugin-id="default ckeditor button" \
--button-name="Default ckeditor button" \
--button-icon-path="modules/custom/modulename/js/plugins/default ckeditor button/images/icon.png"