You are here

public function WorkflowScheduledTransition::addDefaultComment in Workflow 7

Same name and namespace in other branches
  1. 7.2 includes/Entity/WorkflowScheduledTransition.php \WorkflowScheduledTransition::addDefaultComment()

File

includes/Entity/WorkflowScheduledTransition.php, line 133
Contains workflow\includes\Entity\WorkflowScheduledTransition.

Class

WorkflowScheduledTransition

Code

public function addDefaultComment() {
  $this->comment = t('Scheduled by user @uid.', array(
    '@uid' => $this->uid,
  ));
}