Fixed payment updates, admin update and minor SSL items

This commit is contained in:
Deon George
2011-12-29 13:52:24 +11:00
parent 50fe0583a3
commit 4a68621fc7
8 changed files with 90 additions and 49 deletions

View File

@@ -40,9 +40,8 @@ class Model_Service_Plugin_Domain extends Model_Service_Plugin {
);
// Required abstract functions
public function service_view() {
return View::factory('service/user/plugin/domain/view')
->set('so',$this);
public function admin_update() {
return '';
}
public function name() {
@@ -53,7 +52,9 @@ class Model_Service_Plugin_Domain extends Model_Service_Plugin {
return sprintf('%s - %s',_('Domain Name License'),$this->name());
}
protected function _admin_update() {
public function service_view() {
return View::factory('service/user/plugin/domain/view')
->set('so',$this);
}
/**