') { // @todo Company address should be calculated return implode($ln,array('PO Box 149','Bendigo, VIC 3550')); } public static function contacts() { // @todo Company phone should be calculated return 'Tel: 03 5410 1135'; } public static function render() { echo static::name(); echo static::address(); echo static::contacts(); } /** * Return the HTML to render the company address */ public function __toString() { try { return static::render(); } // Display the exception message catch (Exception $e) { Kohana::exception_handler($e); return ''; } } } ?>