Skip to content

Commit

Permalink
Added loaded layout for Jankx page
Browse files Browse the repository at this point in the history
  • Loading branch information
puleeno committed Jun 17, 2024
1 parent ac5e59d commit 7f2b95d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/Page.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ class Page

protected $templates;

protected $loadedLayout;

public static function getInstance()
{
if (is_null(self::$instance)) {
Expand Down Expand Up @@ -48,6 +50,17 @@ public function getContext()
return $this->context;
}


public function getLoadedLayout()
{
return $this->loadedLayout;
}

public function setLoadedLayout($layout)
{
$this->loadedLayout = $layout;
}

public function setTemplates($templates)
{
$this->templates = $templates;
Expand Down

0 comments on commit 7f2b95d

Please sign in to comment.