You are here

public function Boxout::getButtons in Boxout 8

Implements CKEditorPluginButtonsInterface::getButtons().

Overrides CKEditorPluginButtonsInterface::getButtons

File

src/Plugin/CKEditorPlugin/Boxout.php, line 68

Class

Boxout
Defines the "Boxout" plugin.

Namespace

Drupal\boxout\Plugin\CKEditorPlugin

Code

public function getButtons() {
  return array(
    'Boxout' => array(
      'label' => $this
        ->t('Boxout'),
      'image' => $this
        ->path() . '/js/plugins/boxout/boxout.png',
    ),
  );
}