e9818e8b42
the aligning right.
9 lines
139 B
PHP
9 lines
139 B
PHP
<?php
|
|
|
|
class CustomPage extends Page {
|
|
var $left_enabled = true;
|
|
public function disable_left() {
|
|
$this->left_enabled = false;
|
|
}
|
|
}
|
|
?>
|