forked from Cavemanon/cavepaintings
make all themes have a Page class, to simplify loading
This commit is contained in:
12
themes/lite/page.class.php
Normal file
12
themes/lite/page.class.php
Normal file
@@ -0,0 +1,12 @@
|
||||
<?php declare(strict_types=1);
|
||||
|
||||
class Page extends BasePage
|
||||
{
|
||||
/** @var bool */
|
||||
public $left_enabled = true;
|
||||
|
||||
public function disable_left()
|
||||
{
|
||||
$this->left_enabled = false;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user