This repository has been archived on 2024-09-05. You can view files and clone it, but cannot push or open issues or pull requests.
shimmie2/themes/lite/custompage.class.php

16 lines
209 B
PHP
Raw Normal View History

<?php
2014-04-29 05:51:13 +00:00
/**
* Class CustomPage
*/
class CustomPage extends Page
{
/** @var bool */
public $left_enabled = true;
2014-04-29 05:51:13 +00:00
public function disable_left()
{
$this->left_enabled = false;
}
}