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