interface StateItemInterface in State Machine 8
Defines the interface for state field items.
Hierarchy
- interface \Drupal\Core\TypedData\TypedDataInterface
- interface \Drupal\Core\TypedData\TraversableTypedDataInterface extends \Drupal\Core\TypedData\Traversable
- interface \Drupal\Core\TypedData\ComplexDataInterface
- interface \Drupal\Core\Field\FieldItemInterface
- interface \Drupal\state_machine\Plugin\Field\FieldType\StateItemInterface
- interface \Drupal\Core\Field\FieldItemInterface
- interface \Drupal\Core\TypedData\ComplexDataInterface
- interface \Drupal\Core\TypedData\TraversableTypedDataInterface extends \Drupal\Core\TypedData\Traversable
Expanded class hierarchy of StateItemInterface
All classes that implement StateItemInterface
File
- src/
Plugin/ Field/ FieldType/ StateItemInterface.php, line 11
Namespace
Drupal\state_machine\Plugin\Field\FieldTypeView source
interface StateItemInterface extends FieldItemInterface {
/**
* Gets the workflow used by the field.
*
* @return \Drupal\state_machine\Plugin\Workflow\WorkflowInterface|false
* The workflow, or FALSE if unknown at this time.
*/
public function getWorkflow();
/**
* Gets the original state ID.
*
* If the state ID has been changed after the entity was constructed/loaded,
* the original ID will hold the previous value.
*
* Use this as an alternative to getting the state ID from $entity->original.
*
* @return string
* The original state ID.
*/
public function getOriginalId();
/**
* Gets the current state ID.
*
* @return string
* The current state ID.
*/
public function getId();
/**
* Gets the label of the current state.
*
* @return string
* The label of the current state.
*/
public function getLabel();
/**
* Gets the label of the original state.
*
* @return string
* The label of the original state.
*/
public function getOriginalLabel();
/**
* Gets the allowed transitions for the current state.
*
* @return \Drupal\state_machine\Plugin\Workflow\WorkflowTransition[]
* The allowed transitions, keyed by transition ID.
*/
public function getTransitions();
/**
* Gets whether the given transition is allowed.
*
* @param string $transition_id
* The transition ID.
*
* @return bool
* TRUE if the given transition is allowed, FALSE otherwise.
*/
public function isTransitionAllowed($transition_id);
/**
* Applies the given transition, changing the current state.
*
* @param \Drupal\state_machine\Plugin\Workflow\WorkflowTransition $transition
* The transition to apply.
*
* @throws \InvalidArgumentException
* Thrown when the transition is not allowed.
*/
public function applyTransition(WorkflowTransition $transition);
/**
* Applies a transition with the given ID, changing the current state.
*
* @param string $transition_id
* The transition ID.
*
* @throws \InvalidArgumentException
* Thrown when no matching transition was found.
*/
public function applyTransitionById($transition_id);
/**
* Gets whether the current state is valid.
*
* Drupal separates field validation into a separate step, allowing an
* invalid state to be set before validation is invoked. At that point
* validation has no access to the previous value, so it can't determine
* if the transition is allowed. Thus, the field item must track the state
* changes internally, and answer via this method if the current state is
* valid.
*
* @see \Drupal\state_machine\Plugin\Validation\Constraint\StateConstraintValidator
*
* @return bool
* TRUE if the current state is valid, FALSE otherwise.
*/
public function isValid();
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ComplexDataInterface:: |
public | function | Gets a property object. | 2 |
ComplexDataInterface:: |
public | function |
Gets the data definition. Overrides TypedDataInterface:: |
|
ComplexDataInterface:: |
public | function | Gets an array of property objects. | 3 |
ComplexDataInterface:: |
public | function | Determines whether the data structure is empty. | 2 |
ComplexDataInterface:: |
public | function | Sets a property value. | 3 |
ComplexDataInterface:: |
public | function | Returns an array of all property values. | 2 |
FieldItemInterface:: |
public static | function | Calculates dependencies for field items. | 1 |
FieldItemInterface:: |
public static | function | Calculates dependencies for field items on the storage level. | 1 |
FieldItemInterface:: |
public static | function | Defines the field-level settings for this plugin. | 1 |
FieldItemInterface:: |
public static | function | Defines the storage-level settings for this plugin. | 1 |
FieldItemInterface:: |
public | function | Defines custom delete behavior for field values. | 1 |
FieldItemInterface:: |
public | function | Defines custom revision delete behavior for field values. | 1 |
FieldItemInterface:: |
public | function | Returns a form for the field-level settings. | 1 |
FieldItemInterface:: |
public static | function | Returns a settings array in the field type's canonical representation. | 1 |
FieldItemInterface:: |
public static | function | Returns a settings array that can be stored as a configuration value. | 1 |
FieldItemInterface:: |
public static | function | Generates placeholder field values. | 1 |
FieldItemInterface:: |
public | function | Gets the entity that field belongs to. | 1 |
FieldItemInterface:: |
public | function | Gets the field definition. | 1 |
FieldItemInterface:: |
public | function | Gets the langcode of the field values held in the object. | 1 |
FieldItemInterface:: |
public static | function | Returns the name of the main property, if any. | 1 |
FieldItemInterface:: |
public static | function | Informs the plugin that a dependency of the field will be deleted. | 1 |
FieldItemInterface:: |
public | function | Defines custom post-save behavior for field values. | 1 |
FieldItemInterface:: |
public | function | Defines custom presave behavior for field values. | 1 |
FieldItemInterface:: |
public static | function | Defines field item properties. | 28 |
FieldItemInterface:: |
public static | function | Returns the schema for the field. | 31 |
FieldItemInterface:: |
public | function | Returns a form for the storage-level settings. | 1 |
FieldItemInterface:: |
public static | function | Returns a settings array in the field type's canonical representation. | 1 |
FieldItemInterface:: |
public static | function | Returns a settings array that can be stored as a configuration value. | 1 |
FieldItemInterface:: |
public | function | Returns a renderable array for a single field item. | 1 |
FieldItemInterface:: |
public | function | Magic method: Gets a property value. | 1 |
FieldItemInterface:: |
public | function | Magic method: Determines whether a property is set. | 1 |
FieldItemInterface:: |
public | function | Magic method: Sets a property value. | 1 |
FieldItemInterface:: |
public | function | Magic method: Unsets a property. | 1 |
StateItemInterface:: |
public | function | Applies the given transition, changing the current state. | 1 |
StateItemInterface:: |
public | function | Applies a transition with the given ID, changing the current state. | 1 |
StateItemInterface:: |
public | function | Gets the current state ID. | 1 |
StateItemInterface:: |
public | function | Gets the label of the current state. | 1 |
StateItemInterface:: |
public | function | Gets the original state ID. | 1 |
StateItemInterface:: |
public | function | Gets the label of the original state. | 1 |
StateItemInterface:: |
public | function | Gets the allowed transitions for the current state. | 1 |
StateItemInterface:: |
public | function | Gets the workflow used by the field. | 1 |
StateItemInterface:: |
public | function | Gets whether the given transition is allowed. | 1 |
StateItemInterface:: |
public | function | Gets whether the current state is valid. | 1 |
TraversableTypedDataInterface:: |
public | function | React to changes to a child property or item. | 4 |
TypedDataInterface:: |
public | function | Applies the default value. | 1 |
TypedDataInterface:: |
public static | function | Constructs a TypedData object given its definition and context. | 1 |
TypedDataInterface:: |
public | function | Gets a list of validation constraints. | 1 |
TypedDataInterface:: |
public | function | Returns the name of a property or item. | 1 |
TypedDataInterface:: |
public | function | Returns the parent data structure; i.e. either complex data or a list. | 1 |
TypedDataInterface:: |
public | function | Returns the property path of the data. | 1 |
TypedDataInterface:: |
public | function | Returns the root of the typed data tree. | 1 |
TypedDataInterface:: |
public | function | Returns a string representation of the data. | 1 |
TypedDataInterface:: |
public | function | Gets the data value. | 1 |
TypedDataInterface:: |
public | function | Sets the context of a property or item via a context aware parent. | 1 |
TypedDataInterface:: |
public | function | Sets the data value. | 1 |
TypedDataInterface:: |
public | function | Validates the currently set data value. | 1 |