mirror of
https://github.com/silverstripe/silverstripe-installer
synced 2024-10-22 17:05:33 +02:00
20 lines
243 B
PHP
20 lines
243 B
PHP
|
<?
|
||
|
|
||
|
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;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|