2020-01-26 13:19:35 +00:00
|
|
|
<?php declare(strict_types=1);
|
2013-06-19 20:09:22 +01:00
|
|
|
|
2019-05-28 17:59:38 +01:00
|
|
|
class CustomPage extends Page
|
|
|
|
{
|
|
|
|
public $left_enabled = true;
|
|
|
|
public function disable_left()
|
|
|
|
{
|
|
|
|
$this->left_enabled = false;
|
|
|
|
}
|
2013-06-19 20:09:22 +01:00
|
|
|
}
|