芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/public_html/cloud.pulsehost.co.uk/modules/Calendar/Classes/Ics.php
Uid = ''; $this->Sequence = 1; $this->Attendee = ''; $this->File = ''; $this->Type = ''; $this->Location = ''; $this->Description = ''; $this->Summary = ''; $this->When = ''; $this->CalendarId = ''; $this->Calendars = array(); $this->AttendeeList = []; $this->Organizer = ''; } /** * Creates new empty instance. * * @return Ics */ public static function createInstance() { return new self(); } public function toResponseArray() { return array( 'Uid' => $this->Uid, 'Sequence' => $this->Sequence, 'Attendee' => $this->Attendee, 'File' => $this->File, 'Type' => $this->Type, 'Location' => $this->Location, 'Description' => $this->Description, 'Summary' => $this->Summary, 'When' => $this->When, 'CalendarId' => $this->CalendarId, 'AttendeeList' => $this->AttendeeList, 'Organizer' => $this->Organizer, ); } }