Checks whether the passed value matches the current status.
int $status: The value to check the current status against.
bool TRUE if the passed status matches the current status, FALSE otherwise.
Overrides LocalTaskInterface::isStatus
public function isStatus($status) {
return $this
->getStatus() == $status;
}