<?php
class Element_Home
{
var $_tpl;
public $elementName = 'Home';
public static function Settings()
{
return array(
"Pageable" => true,
"DisplayName" => "Home",
"Version" => 1.0,
"Filename" => "home.element.php"
);
}
public function __construct()
{
$this->_tpl = new tpl();
}
public function Run()
{
return $this->_tpl->parse("Elements/Home/overview");
}
}
?>