You are here

function PanelsLegacyState::getStatus in Panels 6.3

Same name and namespace in other branches
  1. 7.3 includes/legacy.inc \PanelsLegacyState::getStatus()

File

includes/legacy.inc, line 20

Class

PanelsLegacyState
Legacy state manager for Panels.

Code

function getStatus() {
  if (!isset($this->legacy)) {
    $this
      ->determineStatus();
  }
  return $this->legacy;
}