Example #1
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->object($name, ['dtstart' => $this->dtstart, 'tzoffsetfrom' => $this->tzoffsetfrom, 'tzoffsetto' => $this->tzoffsetto, 'rrule' => $this->rrule]);
 }
Example #2
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair($name, ['language' => $this->language], $this->value);
 }
Example #3
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->object('vcalendar', $this->merge(['method' => $this->method, 'prodid' => $this->prodid, 'version' => $this->version, 'event' => $this->events, 'timezone' => $this->timezone]));
 }
Example #4
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->object('valarm', $this->merge(['description' => $this->description, 'trigger' => $this->trigger, 'action' => $this->action]));
 }
Example #5
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair($name, ['tzid' => $this->tzid], $this->value);
 }
Example #6
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair('attendee', ['role' => $this->role, 'partstat' => $this->partstat, 'rsvp' => $this->rsvp, 'type' => $this->type, 'cn' => $this->cn], $this->value);
 }
Example #7
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->object('vevent', $this->merge(['organizer' => $this->organizer, 'attendee' => $this->attendees, 'description' => $this->description, 'comment' => $this->comment, 'summary' => $this->summary, 'dtstart' => $this->dtstart, 'dtend' => $this->dtend, 'dtstamp' => $this->dtstamp, 'uid' => $this->uid, 'class' => $this->class, 'priority' => $this->priority, 'transp' => $this->transp, 'location' => $this->location, 'status' => $this->status, 'sequence' => $this->sequence, 'alarm' => $this->alarm]));
 }
Example #8
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair($name, ['related' => $this->related], $this->value);
 }
Example #9
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->object('vtimezone', ['tzid' => $this->tzid, 'standard' => $this->standard, 'daylight' => $this->daylight]);
 }
Example #10
0
 /**
  * Write this object
  *
  * @param  text.ical.Output $out
  * @param  string $name
  * @return void
  */
 public function write($out, $name)
 {
     $out->pair('organizer', ['cn' => $this->cn], $this->value);
 }