This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/classes/company.php
2011-07-18 16:19:26 +10:00

94 lines
2.0 KiB
PHP

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class is for access company informaiton.
*
* @package OSB
* @subpackage Page
* @category Helpers
* @author Deon George
* @copyright (c) 2010 Deon George
* @license http://dev.leenooks.net/license.html
*/
class Company {
public static function instance() {
return new Company;
}
public static function street() {
// @todo Details should be obtained from DB
return 'PO Box 149';
}
public static function city() {
// @todo Details should be obtained from DB
return 'Bendigo';
}
public static function state() {
// @todo Details should be obtained from DB
return 'VIC';
}
public static function pcode() {
// @todo Details should be obtained from DB
return '3550';
}
public static function address($ln='<br/>') {
return implode($ln,array(static::street(),sprintf('%s, %s %s',static::city(),static::state(),static::pcode())));
}
public static function phone() {
// @todo Company phone should be obtained from db
return '03 5410 1135';
}
public static function fax() {
// @todo Details should be obtained from DB
return '03 5410 1145';
}
public static function contacts() {
return 'Tel: '.static::phone();
}
public static function bsb() {
// @todo Details should be obtained from DB
return Kohana::config('config.bsb');
}
public static function account() {
// @todo Details should be obtained from DB
return Kohana::config('config.accnum');
}
public static function taxid() {
// @todo Details should be obtained from DB
return Kohana::config('config.taxid');
}
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 '';
}
}
}
?>