class Llama

Same name and namespace in other branches
  1. 8.9.x 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

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

148 string references to 'Llama'
ActiveLinkResponseFilterTest::providerTestSetLinkActiveClass in core/tests/Drupal/Tests/Core/EventSubscriber/ActiveLinkResponseFilterTest.php
Provides test data for testSetLinkActiveClass().
AddedStylesheetsTest::setUp in core/modules/ckeditor5/tests/src/Functional/AddedStylesheetsTest.php
AddedStylesheetsTest::setUp in core/modules/ckeditor5/tests/src/Functional/AddedStylesheetsTest.php
BlockContentCacheTagsTest::createEntity in core/modules/block_content/tests/src/Functional/BlockContentCacheTagsTest.php
BlockContentResourceTestBase::getExpectedNormalizedEntity in core/modules/block_content/tests/src/Functional/Rest/BlockContentResourceTestBase.php

... See full list

File

core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/Llama.php, line 30

Namespace

Drupal\ckeditor_test\Plugin\CKEditorPlugin
View source
class Llama extends PluginBase implements CKEditorPluginInterface, ContainerFactoryPluginInterface {
  use StringTranslationTrait;
  
  /**
   * The module list service.
   *
   * @var \Drupal\Core\Extension\ModuleExtensionList
   */
  protected $moduleList;
  
  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
    $instance = new static($configuration, $plugin_id, $plugin_definition);
    $instance->moduleList = $container->get('extension.list.module');
    return $instance;
  }
  
  /**
   * {@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 $this->moduleList
      ->getPath('ckeditor_test') . '/js/llama.js';
  }
  
  /**
   * {@inheritdoc}
   */
  public function getConfig(Editor $editor) {
    return [];
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.