WorkflowInterface.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\workflowsFile
core/modules/workflows/src/WorkflowInterface.phpView source
<?php
namespace Drupal\workflows;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining workflow entities.
*/
interface WorkflowInterface extends ConfigEntityInterface {
/**
* Gets the workflow type plugin.
*
* @return \Drupal\workflows\WorkflowTypeInterface
* The workflow type plugin.
*/
public function getTypePlugin();
}
Interfaces
Name | Description |
---|---|
WorkflowInterface | Provides an interface for defining workflow entities. |