|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Service/DeveloperGarden/Request/RequestAbstract.php'; 00027 00036 class Zend_Service_DeveloperGarden_Request_ConferenceCall_GetConferenceTemplateListRequest 00037 extends Zend_Service_DeveloperGarden_Request_RequestAbstract 00038 { 00044 public $ownerId = null; 00045 00052 public function __construct($environment, $ownerId = null) 00053 { 00054 parent::__construct($environment); 00055 $this->setOwnerId($ownerId); 00056 } 00057 00064 public function setOwnerId($ownerId) 00065 { 00066 $this->ownerId = $ownerId; 00067 return $this; 00068 } 00069 }