mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
1b921d3e51
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/phpinstaller/trunk@39716 467b73ca-7a2a-4603-9d3b-597d59a354a9
20 lines
243 B
PHP
Executable File
20 lines
243 B
PHP
Executable File
<?
|
|
|
|
class Page extends SiteTree {
|
|
static $db = array(
|
|
);
|
|
static $has_one = array(
|
|
);
|
|
}
|
|
|
|
class Page_Controller extends ContentController {
|
|
|
|
// Gets the Project Name
|
|
function project() {
|
|
global $project;
|
|
return $project;
|
|
}
|
|
|
|
}
|
|
|
|
?>
|