Llama.php in Zircon Profile 8.0
File
core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/Llama.php
View source
<?php
namespace Drupal\ckeditor_test\Plugin\CKEditorPlugin;
use Drupal\ckeditor\CKEditorPluginInterface;
use Drupal\Component\Plugin\PluginBase;
use Drupal\editor\Entity\Editor;
class Llama extends PluginBase implements CKEditorPluginInterface {
function getDependencies(Editor $editor) {
return array();
}
function getLibraries(Editor $editor) {
return array();
}
function isInternal() {
return FALSE;
}
function getFile() {
return drupal_get_path('module', 'ckeditor_test') . '/js/llama.js';
}
public function getConfig(Editor $editor) {
return array();
}
}
Classes
Name |
Description |
Llama |
Defines the "Llama" plugin, with a CKEditor "llama" feature. |