LlamaButton.php in Zircon Profile 8.0
File
core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaButton.php
View source
<?php
namespace Drupal\ckeditor_test\Plugin\CKEditorPlugin;
use Drupal\ckeditor\CKEditorPluginButtonsInterface;
class LlamaButton extends Llama implements CKEditorPluginButtonsInterface {
function getButtons() {
return array(
'Llama' => array(
'label' => t('Insert Llama'),
),
);
}
function getFile() {
return drupal_get_path('module', 'ckeditor_test') . '/js/llama_button.js';
}
}
Classes
Name |
Description |
LlamaButton |
Defines a "LlamaButton" plugin, with a toolbar builder-enabled "llama" feature. |