共有 Google カレンダーの一部の予定を特定のユーザーから非表示にすることはできますか?
これが私が欲しいものの例です:
Calendar Shared with 2 other persons: Person A and Person B.
I add an Event named Event 1.
Me and Person A should see it but Person B should not.
I add an Event named Event 2.
Me and Person B should see it but Person A should not.
Google カレンダーに ACL があるとどこかで読みましたが、イベントごとに使用できますか?
現在、Zend_Gdata_Calendar
すべてのイベントを表示するために使用しています。
正解に基づいて、これを使用して出席者Zend_Gdata_Calendar
を追加できました:
$who[0] = $service->newWho();
$who[0]->setEmail("theemail@gmail.com");
$who[0]->setValueString("Person Name");
$stat = $service->newAttendeeStatus();
$stat->setValue('http://schemas.google.com/g/2005#event.accepted');
$who[0]->setAttendeeStatus($stat);
$event->setWho($who);