|
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_CreateConferenceTemplateRequest 00037 extends Zend_Service_DeveloperGarden_Request_RequestAbstract 00038 { 00044 public $ownerId = null; 00045 00051 public $detail = null; 00052 00058 public $participants = null; 00059 00068 public function __construct($environment, $ownerId, 00069 Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $conferenceDetails, 00070 array $conferenceParticipants = null 00071 ) { 00072 parent::__construct($environment); 00073 $this->setOwnerId($ownerId) 00074 ->setDetail($conferenceDetails) 00075 ->setParticipants($conferenceParticipants); 00076 } 00077 00084 public function setParticipants(array $participants = null) 00085 { 00086 $this->participants = $participants; 00087 return $this; 00088 } 00089 00096 public function setDetail(Zend_Service_DeveloperGarden_ConferenceCall_ConferenceDetail $detail) 00097 { 00098 $this->detail = $detail; 00099 return $this; 00100 } 00101 00108 public function setOwnerId($ownerId) 00109 { 00110 $this->ownerId = $ownerId; 00111 return $this; 00112 } 00113 }