You are here

protected function WorkflowState::defaultLabel in Workflow 7.2

Mimics Entity API functions.

Overrides Entity::defaultLabel

File

includes/Entity/WorkflowState.php, line 534
Contains workflow\includes\Entity\WorkflowState. Contains workflow\includes\Entity\WorkflowStateController.

Class

WorkflowState
Class WorkflowState

Code

protected function defaultLabel() {
  return isset($this->state) ? t('@state', array(
    '@state' => $this->state,
  )) : '';
}