Skip to content
LlamaButton.php 764 B
Newer Older
 * Contains \Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaButton.
namespace Drupal\ckeditor_test\Plugin\CKEditorPlugin;

use Drupal\ckeditor\CKEditorPluginButtonsInterface;

/**
 * Defines a "LlamaButton" plugin, with a toolbar builder-enabled "llama" feature.
 *
 *   label = @Translation("Llama Button")
 * )
 */
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';
  }

}