class Llama
Same name in other branches
- 9 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 \Drupal\Component\Plugin\PluginInspectionInterface, \Drupal\Component\Plugin\DerivativeInspectionInterface
- class \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama extends \Drupal\Component\Plugin\PluginBase implements \Drupal\ckeditor\CKEditorPluginInterface
Expanded class hierarchy of Llama
See also
\Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaContextual
\Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaButton
\Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaContextualAndButton
\Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaCss
134 string references to 'Llama'
- ActiveLinkResponseFilterTest::providerTestSetLinkActiveClass in core/
tests/ Drupal/ Tests/ Core/ EventSubscriber/ ActiveLinkResponseFilterTest.php - Provides test data for testSetLinkActiveClass().
- BlockContentCacheTagsTest::createEntity in core/
modules/ block_content/ tests/ src/ Functional/ BlockContentCacheTagsTest.php - Creates the entity to be tested.
- BlockContentResourceTestBase::getExpectedNormalizedEntity in core/
modules/ block_content/ tests/ src/ Functional/ Rest/ BlockContentResourceTestBase.php - Returns the expected normalization of the entity.
- BlockContentTest::getExpectedDocument in core/
modules/ jsonapi/ tests/ src/ Functional/ BlockContentTest.php - Returns the expected JSON:API document for the entity.
- BlockResourceTestBase::createEntity in core/
modules/ block/ tests/ src/ Functional/ Rest/ BlockResourceTestBase.php - Creates the entity to be tested.
File
-
core/
modules/ ckeditor/ tests/ modules/ src/ Plugin/ CKEditorPlugin/ Llama.php, line 27
Namespace
Drupal\ckeditor_test\Plugin\CKEditorPluginView source
class Llama extends PluginBase implements CKEditorPluginInterface {
/**
* {@inheritdoc}
*/
public function getDependencies(Editor $editor) {
return [];
}
/**
* {@inheritdoc}
*/
public function getLibraries(Editor $editor) {
return [];
}
/**
* {@inheritdoc}
*/
public function isInternal() {
return FALSE;
}
/**
* {@inheritdoc}
*/
public function getFile() {
return drupal_get_path('module', 'ckeditor_test') . '/js/llama.js';
}
/**
* {@inheritdoc}
*/
public function getConfig(Editor $editor) {
return [];
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overriden Title | Overrides |
---|---|---|---|---|---|
Llama::getConfig | public | function | Returns the additions to CKEDITOR.config for a specific CKEditor instance. | Overrides CKEditorPluginInterface::getConfig | |
Llama::getDependencies | public | function | Returns a list of plugins this plugin requires. | Overrides CKEditorPluginInterface::getDependencies | |
Llama::getFile | public | function | Returns the Drupal root-relative file path to the plugin JavaScript file. | Overrides CKEditorPluginInterface::getFile | 4 |
Llama::getLibraries | public | function | Returns a list of libraries this plugin requires. | Overrides CKEditorPluginInterface::getLibraries | |
Llama::isInternal | public | function | Indicates if this plugin is part of the optimized CKEditor build. | Overrides CKEditorPluginInterface::isInternal | |
PluginBase::$configuration | protected | property | Configuration information passed into the plugin. | ||
PluginBase::$pluginDefinition | protected | property | The plugin implementation definition. | ||
PluginBase::$pluginId | protected | property | The plugin_id. | ||
PluginBase::DERIVATIVE_SEPARATOR | constant | A string which is used to separate base plugin IDs from the derivative ID. | |||
PluginBase::getBaseId | public | function | Gets the base_plugin_id of the plugin instance. | Overrides DerivativeInspectionInterface::getBaseId | |
PluginBase::getDerivativeId | public | function | Gets the derivative_id of the plugin instance. | Overrides DerivativeInspectionInterface::getDerivativeId | |
PluginBase::getPluginDefinition | public | function | Gets the definition of the plugin implementation. | Overrides PluginInspectionInterface::getPluginDefinition | |
PluginBase::getPluginId | public | function | Gets the plugin_id of the plugin instance. | Overrides PluginInspectionInterface::getPluginId | |
PluginBase::isConfigurable | public | function | Determines if the plugin is configurable. | ||
PluginBase::__construct | public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 6 |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.