20 lines
180 B
PHP
20 lines
180 B
PHP
|
<?php
|
||
|
|
||
|
class Site
|
||
|
{
|
||
|
private static $content;
|
||
|
|
||
|
public static function init()
|
||
|
{
|
||
|
self::$content = '';
|
||
|
}
|
||
|
|
||
|
public static function content()
|
||
|
{
|
||
|
return self::$content;
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|