public function WorkflowScheduledTransition::addDefaultComment in Workflow 7
Same name and namespace in other branches
- 7.2 includes/Entity/WorkflowScheduledTransition.php \WorkflowScheduledTransition::addDefaultComment()
File
- includes/
Entity/ WorkflowScheduledTransition.php, line 133 - Contains workflow\includes\Entity\WorkflowScheduledTransition.
Class
Code
public function addDefaultComment() {
$this->comment = t('Scheduled by user @uid.', array(
'@uid' => $this->uid,
));
}