Back to WorkflowBehaviorTrait class

Method workflowBeforeSave

public void
workflowBeforeSave
()
Preparation of workflow data/plugins
Returns
  • void
Since
  • 4.0.0

Method workflowBeforeSave - Source code

/**
 * Preparation of workflow data/plugins
 *
 * @return  void
 *
 * @since   4.0.0
 */
public function workflowBeforeSave()
{
    if (!$this->workflowEnabled) {
        return;
    }
    $this->importWorkflowPlugins();
}