Differential D14837 Diff 35892 src/applications/calendar/search/PhabricatorCalendarEventSearchIndexer.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/calendar/search/PhabricatorCalendarEventSearchIndexer.php
Show All 35 Lines | protected function buildAbstractDocumentByPHID($phid) { | ||||
$doc->addRelationship( | $doc->addRelationship( | ||||
$event->getIsCancelled() | $event->getIsCancelled() | ||||
? PhabricatorSearchRelationship::RELATIONSHIP_CLOSED | ? PhabricatorSearchRelationship::RELATIONSHIP_CLOSED | ||||
: PhabricatorSearchRelationship::RELATIONSHIP_OPEN, | : PhabricatorSearchRelationship::RELATIONSHIP_OPEN, | ||||
$event->getPHID(), | $event->getPHID(), | ||||
PhabricatorCalendarEventPHIDType::TYPECONST, | PhabricatorCalendarEventPHIDType::TYPECONST, | ||||
time()); | time()); | ||||
$this->indexTransactions( | |||||
$doc, | |||||
new PhabricatorCalendarEventTransactionQuery(), | |||||
array($phid)); | |||||
return $doc; | return $doc; | ||||
} | } | ||||
} | } |