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