|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Service/DeveloperGarden/Response/ResponseAbstract.php'; 00027 00036 class Zend_Service_DeveloperGarden_Response_BaseUserService_GetQuotaInformationResponse 00037 extends Zend_Service_DeveloperGarden_Response_ResponseAbstract 00038 { 00044 public $maxQuota = null; 00045 00052 public $maxUserQuota = null; 00053 00059 public $quotaLevel = null; 00060 00066 public function getQuotaLevel() 00067 { 00068 return $this->quotaLevel; 00069 } 00070 00076 public function getMaxUserQuota() 00077 { 00078 return $this->maxUserQuota; 00079 } 00080 00086 public function getMaxQuota() 00087 { 00088 return $this->maxQuota; 00089 } 00090 }