public function KanbanLog::getType in Content Planner 8
Gets the type of the entity.
Return value
string The content entity type.
Overrides KanbanLogInterface::getType
1 call to KanbanLog::getType()
- KanbanLog::getEntityObject in modules/
content_kanban/ src/ Entity/ KanbanLog.php - Gets the entity loaded based on id and type.
File
- modules/
content_kanban/ src/ Entity/ KanbanLog.php, line 168
Class
- KanbanLog
- Defines the Kanban Log entity.
Namespace
Drupal\content_kanban\EntityCode
public function getType() {
return $this
->get('entity_type')->value;
}