You are here

public function Breakpoint::getStatus in Bootstrap Layout Builder 2.x

Same name and namespace in other branches
  1. 1.x src/Entity/Breakpoint.php \Drupal\bootstrap_layout_builder\Entity\Breakpoint::getStatus()

Returns the status of the breakpoint.

Return value

bool Either "enabled" or "disabled".

Overrides BreakpointInterface::getStatus

File

src/Entity/Breakpoint.php, line 98

Class

Breakpoint
Defines the Breakpoint config entity.

Namespace

Drupal\bootstrap_layout_builder\Entity

Code

public function getStatus() {
  return $this->status;
}