Beispiel #1
0
 public function __construct($creatorId, $description, $duration, $editorUrl, $folderId, $id, $isBroadcast, $isDownloadable, $mP3Url, $mP4Url, $name, $notesURL, $outputsPageUrl, $remoteRecorderIds, $sharePageUrl, $startTime, $state, $statusMessage, $thumbUrl, $viewerUrl)
 {
     $this->CreatorId = $creatorId;
     $this->Description = $description;
     $this->Duration = $duration;
     $this->EditorUrl = $editorUrl;
     $this->FolderId = $folderId;
     $this->Id = $id;
     $this->IsBroadcast = $isBroadcast;
     $this->IsDownloadable = $isDownloadable;
     $this->MP3Url = $mP3Url;
     $this->MP4Url = $mP4Url;
     $this->Name = $name;
     $this->NotesURL = $notesURL;
     $this->OutputsPageUrl = $outputsPageUrl;
     $this->RemoteRecorderIds = $remoteRecorderIds;
     $this->SharePageUrl = $sharePageUrl;
     $this->StartTime = $startTime;
     $this->State = SessionState::getSessionStateFromSessionStateName($state);
     $this->StatusMessage = $statusMessage;
     $this->ThumbUrl = $thumbUrl;
     $this->ViewerUrl = $viewerUrl;
 }
Beispiel #2
0
function setcookie()
{
    SessionState::setCookie(func_get_args());
}
Beispiel #3
0
 public function testUnregister()
 {
     $this->assertFalse(SessionState::queryStart());
     $this->object->register();
     $this->assertTrue(SessionState::queryStart());
     $this->object->unregister();
     $this->assertFalse(SessionState::queryStart());
 }