2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2010-02-28 12:05:12 -08:00
|
|
|
|
2020-01-27 18:35:36 +00:00
|
|
|
class Page extends BasePage
|
2019-05-28 17:59:38 +01:00
|
|
|
{
|
|
|
|
/** @var bool */
|
|
|
|
public $left_enabled = true;
|
2014-04-29 01:51:13 -04:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
public function disable_left()
|
|
|
|
{
|
|
|
|
$this->left_enabled = false;
|
|
|
|
}
|
2010-02-28 12:05:12 -08:00
|
|
|
}
|