|
Moodle
2.2.1
http://www.collinsharper.com
|
00001 <?php 00026 require_once 'Zend/Service/DeveloperGarden/Request/VoiceButler/VoiceButlerAbstract.php'; 00027 00036 class Zend_Service_DeveloperGarden_Request_VoiceButler_TearDownCall 00037 extends Zend_Service_DeveloperGarden_Request_VoiceButler_VoiceButlerAbstract 00038 { 00044 public $sessionId = null; 00045 00053 public function __construct($environment, $sessionId) 00054 { 00055 parent::__construct($environment); 00056 $this->setSessionId($sessionId); 00057 } 00058 00062 public function getSessionId() 00063 { 00064 return $this->sessionId; 00065 } 00066 00073 public function setSessionId($sessionId) 00074 { 00075 $this->sessionId = $sessionId; 00076 return $this; 00077 } 00078 }