class Llama in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/Llama.php \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama
Defines the "Llama" plugin, with a CKEditor "llama" feature.
This feature does not correspond to a toolbar button. Because this plugin does not implement the CKEditorPluginContextualInterface nor the CKEditorPluginButtonsInterface interface, there is no way of actually loading this plugin.
Plugin annotation
@CKEditorPlugin(
id = "llama",
label = @Translation("Llama")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama implements CKEditorPluginInterface
Expanded class hierarchy of Llama
See also
MetaContextual
MetaButton
MetaContextualAndButton
14 string references to 'Llama'
- BlockContentCacheTagsTest::createEntity in core/
modules/ block_content/ src/ Tests/ BlockContentCacheTagsTest.php - Creates the entity to be tested.
- CKEditorLoadingTest::testLoading in core/
modules/ ckeditor/ src/ Tests/ CKEditorLoadingTest.php - Tests loading of CKEditor CSS, JS and JS settings.
- CKEditorPluginManagerTest::testEnabledPlugins in core/
modules/ ckeditor/ src/ Tests/ CKEditorPluginManagerTest.php - Tests the enabling of plugins.
- CKEditorTest::testBuildToolbarJSSetting in core/
modules/ ckeditor/ src/ Tests/ CKEditorTest.php - Tests CKEditor::buildToolbarJSSetting().
- CommentCacheTagsTest::createEntity in core/
modules/ comment/ src/ Tests/ CommentCacheTagsTest.php - Creates the entity to be tested.
File
- core/
modules/ ckeditor/ tests/ modules/ src/ Plugin/ CKEditorPlugin/ Llama.php, line 31 - Contains \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama.
Namespace
Drupal\ckeditor_test\Plugin\CKEditorPluginView source
class Llama extends PluginBase implements CKEditorPluginInterface {
/**
* {@inheritdoc}
*/
function getDependencies(Editor $editor) {
return array();
}
/**
* {@inheritdoc}
*/
function getLibraries(Editor $editor) {
return array();
}
/**
* {@inheritdoc}
*/
function isInternal() {
return FALSE;
}
/**
* {@inheritdoc}
*/
function getFile() {
return drupal_get_path('module', 'ckeditor_test') . '/js/llama.js';
}
/**
* {@inheritdoc}
*/
public function getConfig(Editor $editor) {
return array();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Llama:: |
public | function |
Returns the additions to CKEDITOR.config for a specific CKEditor instance. Overrides CKEditorPluginInterface:: |
|
Llama:: |
function |
Returns a list of plugins this plugin requires. Overrides CKEditorPluginInterface:: |
||
Llama:: |
function |
Returns the Drupal root-relative file path to the plugin JavaScript file. Overrides CKEditorPluginInterface:: |
3 | |
Llama:: |
function |
Returns a list of libraries this plugin requires. Overrides CKEditorPluginInterface:: |
||
Llama:: |
function |
Indicates if this plugin is part of the optimized CKEditor build. Overrides CKEditorPluginInterface:: |
||
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 2 |
PluginBase:: |
protected | property | The plugin implementation definition. | |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Constructs a Drupal\Component\Plugin\PluginBase object. | 69 |