public function TMGMTJob::isDeletable in Translation Management Tool 7
Checks whether a job is deletable.
Return value
boolean TRUE if the job can be deleted, FALSE otherwise.
File
- entity/
tmgmt.entity.job.inc, line 534
Class
- TMGMTJob
- Entity class for the tmgmt_job entity.
Code
public function isDeletable() {
return !$this
->isActive();
}