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/modules/domain/classes/Service/Domain/Manual.php

23 lines
587 B
PHP
Raw Normal View History

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class is able to interact with TPP
*
2013-03-19 22:35:19 +00:00
* @package Domain
* @category Service
* @author Deon George
2013-03-19 22:35:19 +00:00
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Service_Domain_Manual extends Service_Domain {
private $login_acnt_field = '';
private $login_user_field = '';
private $login_pass_field = '';
// Our required abstract classes
2012-11-09 23:13:57 +00:00
public function manage_button(Model_Service_Plugin_Domain $spdo,$t) {
return _('Please contact us');
}
}
?>