81 lines
1.9 KiB
PHP
81 lines
1.9 KiB
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* This class supports Services
|
|
*
|
|
* @package OSB
|
|
* @subpackage Hosting
|
|
* @category Models
|
|
* @author Deon George
|
|
* @copyright (c) 2010 Open Source Billing
|
|
* @license http://dev.osbill.net/license.html
|
|
*/
|
|
class Model_Service_Plugin_Host extends Model_Service_Plugin {
|
|
protected $_table_name = 'service__hosting';
|
|
protected $_created_column = FALSE;
|
|
protected $_updated_column = FALSE;
|
|
protected $_serialize_column = array(
|
|
'server_data_date',
|
|
);
|
|
|
|
// Relationships
|
|
protected $_has_one = array(
|
|
'domain_TLD'=>array('foreign_key'=>'id','far_key'=>'domain_tld_id'),
|
|
'host_server'=>array('far_key'=>'host_server_id','foreign_key'=>'id'),
|
|
);
|
|
protected $_belongs_to = array(
|
|
'service'=>array(),
|
|
);
|
|
|
|
protected $_display_filters = array(
|
|
'domain_name'=>array(
|
|
array('strtoupper',array(':value')),
|
|
),
|
|
'host_expire'=>array(
|
|
array('Config::date',array(':value')),
|
|
),
|
|
);
|
|
|
|
// Required abstract functions
|
|
public function admin_update() {
|
|
return '';
|
|
}
|
|
|
|
public function expire() {
|
|
return $this->host_expire;
|
|
}
|
|
|
|
public function name() {
|
|
return sprintf('%s.%s',$this->display('domain_name'),$this->domain_TLD->display('name'));
|
|
}
|
|
|
|
public function service_view() {
|
|
return View::factory('service/user/plugin/host/view')
|
|
->set('so',$this);
|
|
}
|
|
|
|
public function username_value() {
|
|
return $this->host_username;
|
|
}
|
|
|
|
public function password_value() {
|
|
return $this->host_password;
|
|
}
|
|
|
|
/**
|
|
* This provides us with a manage button to jump to the hosting server
|
|
* to manage the domain.
|
|
*/
|
|
public function manage_button($t='') {
|
|
if (! parent::manage_button($t))
|
|
return NULL;
|
|
|
|
// @todo Convert this to a Static_List display
|
|
if ($this->service->queue == 'PROVISION')
|
|
return _('To Be Provisioned');
|
|
|
|
return ($this->username_value() AND $this->password_value() AND $a=$this->host_server->plugin()) ? $a->manage_button($this,$t) : '';
|
|
}
|
|
}
|
|
?>
|