You are here

public function BUEditorEditor::hasToolbarItem in BUEditor 8

Same name and namespace in other branches
  1. 8.2 src/Entity/BUEditorEditor.php \Drupal\bueditor\Entity\BUEditorEditor::hasToolbarItem()

Checks if an item exists in the toolbar.

File

src/Entity/BUEditorEditor.php, line 101

Class

BUEditorEditor
Defines the BUEditor Editor entity.

Namespace

Drupal\bueditor\Entity

Code

public function hasToolbarItem($id) {
  return in_array($id, $this
    ->getToolbar(), TRUE);
}