fembooru/themes/lite/custompage.class.php

15 lines
188 B
PHP
Raw Normal View History

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