You are here

public function CkeditorTemplates::getDescription in Ckeditor templates user interface 8

Get Teamplate description.

File

src/Entity/CkeditorTemplates.php, line 77

Class

CkeditorTemplates
Defines the ckeditor_template entity.

Namespace

Drupal\ckeditor_templates_ui\Entity

Code

public function getDescription() {
  if (isset($this->description)) {
    return $this->description;
  }
  return '';
}