You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/**
* Returns the string of the specific icon for this trigger.
* @return string icon string
*/
public function get_icon() {
return 't/copy';
}
Trigger (only) Features
multiple_use() in lib.php
/**
* Specifies if this trigger can be used more than once in a single workflow.
* @return bool
*/
public function multiple_use() {
return true;
}
Step (only) Features
is_stoppable() in lib.php
With this feature activated for your step you can stop the workflow for courses that have reached this step instance without deactivating the whole workflow.
/**
* Returns if this step type is stoppable.
* @return bool
*/
public function is_stoppable() {
return false;
}