class Imce in IMCE 8
Same name in this branch
- 8 src/Imce.php \Drupal\imce\Imce
- 8 src/Plugin/BUEditorPlugin/Imce.php \Drupal\imce\Plugin\BUEditorPlugin\Imce
- 8 src/Plugin/CKEditorPlugin/Imce.php \Drupal\imce\Plugin\CKEditorPlugin\Imce
Same name and namespace in other branches
- 8.2 src/Plugin/CKEditorPlugin/Imce.php \Drupal\imce\Plugin\CKEditorPlugin\Imce
Defines Imce plugin for CKEditor.
Plugin annotation
@CKEditorPlugin(
id = "imce",
label = "Imce File Manager"
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
- class \Drupal\ckeditor\CKEditorPluginBase implements CKEditorPluginButtonsInterface, CKEditorPluginInterface
- class \Drupal\imce\Plugin\CKEditorPlugin\Imce
- class \Drupal\ckeditor\CKEditorPluginBase implements CKEditorPluginButtonsInterface, CKEditorPluginInterface
- class \Drupal\Core\Plugin\PluginBase uses DependencySerializationTrait, MessengerTrait, StringTranslationTrait
Expanded class hierarchy of Imce
1 file declares its use of Imce
- ImceTest.php in tests/
src/ Kernel/ Plugin/ CKEditorPlugin/ ImceTest.php
File
- src/
Plugin/ CKEditorPlugin/ Imce.php, line 16
Namespace
Drupal\imce\Plugin\CKEditorPluginView source
class Imce extends CKEditorPluginBase {
/**
* {@inheritdoc}
*/
public function getDependencies(Editor $editor) {
// Need drupalimage for drupallink support. See #2666596 .
return [
'drupalimage',
'drupalimagecaption',
];
}
/**
* {@inheritdoc}
*/
public function getFile() {
return drupal_get_path('module', 'imce') . '/js/plugins/ckeditor/imce.ckeditor.js';
}
/**
* {@inheritdoc}
*/
public function getButtons() {
return [
'ImceImage' => [
'label' => $this
->t('Images - Imce File Browser'),
'image' => $this
->imageIcon(),
],
'ImceLink' => [
'label' => $this
->t('Links - Imce File Browser'),
'image' => $this
->linkIcon(),
],
];
}
/**
* {@inheritdoc}
*/
public function getConfig(Editor $editor) {
return [
'ImceImageIcon' => file_create_url($this
->imageIcon()),
'ImceLinkIcon' => file_create_url($this
->linkIcon()),
];
}
/**
* Returns image icon path.
*
* Uses the icon from drupalimage plugin.
*/
public function imageIcon() {
return drupal_get_path('module', 'imce') . '/js/plugins/ckeditor/icons/imceimage.png';
}
/**
* Returns link icon path.
*
* Uses the icon from drupallink plugin.
*/
public function linkIcon() {
return drupal_get_path('module', 'imce') . '/js/plugins/ckeditor/icons/imcelink.png';
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CKEditorPluginBase:: |
public | function |
Returns a list of libraries this plugin requires. Overrides CKEditorPluginInterface:: |
4 |
CKEditorPluginBase:: |
public | function |
Indicates if this plugin is part of the optimized CKEditor build. Overrides CKEditorPluginInterface:: |
4 |
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
Imce:: |
public | function |
Returns the buttons that this plugin provides, along with metadata. Overrides CKEditorPluginButtonsInterface:: |
|
Imce:: |
public | function |
Returns the additions to CKEDITOR.config for a specific CKEditor instance. Overrides CKEditorPluginInterface:: |
|
Imce:: |
public | function |
Returns a list of plugins this plugin requires. Overrides CKEditorPluginBase:: |
|
Imce:: |
public | function |
Returns the Drupal root-relative file path to the plugin JavaScript file. Overrides CKEditorPluginInterface:: |
|
Imce:: |
public | function | Returns image icon path. | |
Imce:: |
public | function | Returns link icon path. | |
MessengerTrait:: |
protected | property | The messenger. | 29 |
MessengerTrait:: |
public | function | Gets the messenger. | 29 |
MessengerTrait:: |
public | function | Sets the messenger. | |
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
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:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. |