bludit/kernel/helpers/site.class.php
Diego Najar 29d06b62a3 mac
2015-03-08 14:02:59 -03:00

20 lines
180 B
PHP

<?php
class Site
{
private static $content;
public static function init()
{
self::$content = '';
}
public static function content()
{
return self::$content;
}
}
?>