|
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_AddConferenceTemplateParticipantRequest 00037 extends Zend_Service_DeveloperGarden_Request_RequestAbstract 00038 { 00044 public $templateId = null; 00045 00051 public $participant = null; 00052 00060 public function __construct($environment, $templateId, 00061 Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant = null 00062 ) { 00063 parent::__construct($environment); 00064 $this->setTemplateId($templateId) 00065 ->setParticipant($participant); 00066 } 00067 00074 public function setTemplateId($templateId) 00075 { 00076 $this->templateId = $templateId; 00077 return $this; 00078 } 00079 00086 public function setParticipant(Zend_Service_DeveloperGarden_ConferenceCall_ParticipantDetail $participant) 00087 { 00088 $this->participant = $participant; 00089 return $this; 00090 } 00091 }