You are here

public function TMGMTLocalTask::isPending in Translation Management Tool 7

Returns whether the status of this task is 'pending'.

Return value

boolean TRUE if the status is 'pending', FALSE otherwise.

File

translators/tmgmt_local/entity/tmgmt_local.entity.task.inc, line 276

Class

TMGMTLocalTask
Entity class for the local task entity.

Code

public function isPending() {
  return $this
    ->isStatus(TMGMT_LOCAL_TASK_STATUS_PENDING);
}