You are here

NotificationAggregator.php in CKEditor Upload Image 8.2

Same filename and directory in other branches
  1. 8 src/Plugin/CKEditorPlugin/NotificationAggregator.php

File

src/Plugin/CKEditorPlugin/NotificationAggregator.php
View source
<?php

/**
 * @file
 * Contains \Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin\NotificationAggregator.
 */
namespace Drupal\ckeditor_uploadimage\Plugin\CKEditorPlugin;

use Drupal\ckeditor\CKEditorPluginInterface;
use Drupal\Component\Plugin\PluginBase;
use Drupal\editor\Entity\Editor;

/**
 * Defines the "templates" plugin.
 *
 * @CKEditorPlugin(
 *   id = "notificationaggregator",
 *   label = @Translation("CKEditor Notification Aggregator"),
 *   module = "ckeditor_uploadimage"
 * )
 */
class NotificationAggregator extends PluginBase implements CKEditorPluginInterface {

  /**
   * {@inheritdoc}
   */
  function getDependencies(Editor $editor) {
    return [];
  }

  /**
   * {@inheritdoc}
   */
  function getFile() {
    $path = 'libraries/ckeditor/plugins/' . $this
      ->getPluginId() . '/plugin.js';
    if (file_exists('profiles/' . \Drupal::installProfile() . "/{$path}")) {
      return 'profiles/' . \Drupal::installProfile() . "/{$path}";
    }
    return $path;
  }

  /**
   * {@inheritdoc}
   */
  function isInternal() {
    return FALSE;
  }

  /**
   * {@inheritdoc}
   */
  public function getConfig(Editor $editor) {
    return [];
  }

  /**
   * {@inheritdoc}
   */
  function getLibraries(Editor $editor) {
    return [];
  }

}

Classes

Namesort descending Description
NotificationAggregator Defines the "templates" plugin.