public function KanbanLog::setName in Content Planner 8
Sets the Kanban Log name.
Parameters
string $name: The Kanban Log name.
Return value
\Drupal\content_kanban\Entity\KanbanLogInterface The called Kanban Log entity.
Overrides KanbanLogInterface::setName
File
- modules/
content_kanban/ src/ Entity/ KanbanLog.php, line 80
Class
- KanbanLog
- Defines the Kanban Log entity.
Namespace
Drupal\content_kanban\EntityCode
public function setName($name) {
$this
->set('name', $name);
return $this;
}