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

15 lines
188 B
PHP
Raw Normal View History

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