Файл: _rootinc/cnic/Response/Renewals.php
Строк: 35
<?
// CNic_Toolkit_Response_Renewals - response object for renewals list
// Copyright (c) 2010 CentralNic Ltd. All rights reserved. This program is
// free software; you can redistribute it and/or modify it under the terms
// of the GNU GPL
// $Id: Renewals.php,v 1.7 2010/03/31 12:03:03 gavin Exp $
class CNic_Toolkit_Response_Renewals extends CNic_Toolkit_Response {
public function domains() {
return $this->keys();
}
public function amount($domain) {
list($amount, $expiry) = $this->response($domain);
return $amount;
}
public function expiry($domain) {
list($amount, $expiry) = $this->response($domain);
return $expiry;
}
}
?>