class LlamaContextual in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/ckeditor/tests/modules/src/Plugin/CKEditorPlugin/LlamaContextual.php \Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaContextual
Defines a "Llama" plugin, with a contextually enabled "llama" feature.
Plugin annotation
@CKEditorPlugin(
id = "llama_contextual",
label = @Translation("Contextual Llama")
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama implements CKEditorPluginInterface
- class \Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaContextual implements CKEditorPluginContextualInterface
- class \Drupal\ckeditor_test\Plugin\CKEditorPlugin\Llama implements CKEditorPluginInterface
Expanded class hierarchy of LlamaContextual
File
- core/
modules/ ckeditor/ tests/ modules/ src/ Plugin/ CKEditorPlugin/ LlamaContextual.php, line 21 - Contains \Drupal\ckeditor_test\Plugin\CKEditorPlugin\LlamaContextual.
Namespace
Drupal\ckeditor_test\Plugin\CKEditorPluginView source
class LlamaContextual extends Llama implements CKEditorPluginContextualInterface {
/**
* {@inheritdoc}
*/
function isEnabled(Editor $editor) {
// Automatically enable this plugin if the Underline button is enabled.
$settings = $editor
->getSettings();
foreach ($settings['toolbar']['rows'] as $row) {
foreach ($row as $group) {
if (in_array('Strike', $group['items'])) {
return TRUE;
}
}
}
return FALSE;
}
/**
* {@inheritdoc}
*/
function getFile() {
return drupal_get_path('module', 'ckeditor_test') . '/js/llama_contextual.js';
}
}
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 a list of libraries this plugin requires. Overrides CKEditorPluginInterface:: |
||
Llama:: |
function |
Indicates if this plugin is part of the optimized CKEditor build. Overrides CKEditorPluginInterface:: |
||
LlamaContextual:: |
function |
Returns the Drupal root-relative file path to the plugin JavaScript file. Overrides Llama:: |
||
LlamaContextual:: |
function |
Checks if this plugin should be enabled based on the editor configuration. Overrides CKEditorPluginContextualInterface:: |
||
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 |