mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
decb17bbd6
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@42172 467b73ca-7a2a-4603-9d3b-597d59a354a9
20 lines
308 B
PHP
Executable File
20 lines
308 B
PHP
Executable File
<?php
|
|
|
|
class Page extends SiteTree {
|
|
static $db = array(
|
|
);
|
|
static $has_one = array(
|
|
);
|
|
}
|
|
|
|
class Page_Controller extends ContentController {
|
|
function init() {
|
|
parent::init();
|
|
|
|
Requirements::themedCSS("layout");
|
|
Requirements::themedCSS("typography");
|
|
Requirements::themedCSS("form");
|
|
}
|
|
}
|
|
|
|
?>
|