|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00031 class Zend_Service_DeveloperGarden_Request_BaseUserService_ChangeQuotaPool 00032 { 00038 public $moduleId = null; 00039 00045 public $quotaMax = 0; 00046 00054 public function __construct($moduleId = null, $quotaMax = 0) 00055 { 00056 $this->setModuleId($moduleId) 00057 ->setQuotaMax($quotaMax); 00058 } 00059 00066 public function setModuleId($moduleId = null) 00067 { 00068 $this->moduleId = $moduleId; 00069 return $this; 00070 } 00071 00077 public function getModuleId() 00078 { 00079 return $this->moduleId; 00080 } 00081 00088 public function setQuotaMax($quotaMax = 0) 00089 { 00090 $this->quotaMax = $quotaMax; 00091 return $this; 00092 } 00093 00099 public function getQuotaMax() 00100 { 00101 return $this->quotaMax; 00102 } 00103 }