You are here

public function WorkflowTypeInterface::setStateLabel in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/workflows/src/WorkflowTypeInterface.php \Drupal\workflows\WorkflowTypeInterface::setStateLabel()
  2. 10 core/modules/workflows/src/WorkflowTypeInterface.php \Drupal\workflows\WorkflowTypeInterface::setStateLabel()

Sets a state's label.

Parameters

string $state_id: The state ID to set the label for.

string $label: The state's label.

Return value

$this

1 method overrides WorkflowTypeInterface::setStateLabel()
WorkflowTypeBase::setStateLabel in core/modules/workflows/src/Plugin/WorkflowTypeBase.php
Sets a state's label.

File

core/modules/workflows/src/WorkflowTypeInterface.php, line 160

Class

WorkflowTypeInterface
An interface for Workflow type plugins.

Namespace

Drupal\workflows

Code

public function setStateLabel($state_id, $label);