imdb_api-1.0.x-dev/src/Plugin/CKEditorPlugin/ImdbApiItem.php
src/Plugin/CKEditorPlugin/ImdbApiItem.php
<?php
namespace Drupal\imdb_api\Plugin\CKEditorPlugin;
use Drupal\ckeditor\CKEditorPluginBase;
use Drupal\editor\Entity\Editor;
/**
* Defines the "imdbapiitem" plugin.
*
* NOTE: The plugin ID ('id' key) corresponds to the CKEditor plugin name.
* It is the first argument of the CKEDITOR.plugins.add() function in the
* plugin.js file.
*
* @CKEditorPlugin(
* id = "imdbapiitem",
* label = @Translation("IMDB API Item"),
* module = "imdb_api"
* )
*/
class ImdbApiItem extends CKEditorPluginBase {
/**
* {@inheritdoc}
*
* NOTE: The keys of the returned array corresponds to the CKEditor button
* names. They are the first argument of the editor.ui.addButton() or
* editor.ui.addRichCombo() functions in the plugin.js file.
*/
public function getButtons() {
// Make sure that the path to the image matches the file structure of
// the CKEditor plugin you are implementing.
return [
'ImdbApiItem' => [
'label' => t('IMDB API Item'),
'image' => 'modules/contrib/imdb_api/js/plugin/imdb_item/icons/imdb-item.png',
],
];
}
/**
* {@inheritdoc}
*/
public function isEnabled(Editor $editor) {
}
/**
* {@inheritdoc}
*/
public function getFile() {
// Make sure that the path to the plugin.js matches the file structure of
// the CKEditor plugin you are implementing.
return drupal_get_path('module', 'imdb_api') . '/js/Plugin/imdb_item/plugin.js';
}
/**
* {@inheritdoc}
*/
public function isInternal() {
return FALSE;
}
/**
* {@inheritdoc}
*/
public function getDependencies(Editor $editor) {
return [];
}
/**
* {@inheritdoc}
*/
public function getLibraries(Editor $editor) {
return [
'editor/drupal.editor.dialog',
'imdb_api/imdb_item.teaser',
];
}
/**
* {@inheritdoc}
*/
public function getConfig(Editor $editor) {
return [];
}
}
