public function TMGMTLocalTask::getStatus in Translation Management Tool 7
Returns the status of the task. Can be one of the task status constants.
Return value
int The status of the task or NULL if it hasn't been set yet.
1 call to TMGMTLocalTask::getStatus()
- TMGMTLocalTask::isStatus in translators/
tmgmt_local/ entity/ tmgmt_local.entity.task.inc - Checks whether the passed value matches the current status.
File
- translators/
tmgmt_local/ entity/ tmgmt_local.entity.task.inc, line 207
Class
- TMGMTLocalTask
- Entity class for the local task entity.
Code
public function getStatus() {
return $this->status;
}