Path: blob/master/src/applications/calendar/search/PhabricatorCalendarEventFulltextEngine.php
12253 views
<?php12final class PhabricatorCalendarEventFulltextEngine3extends PhabricatorFulltextEngine {45protected function buildAbstractDocument(6PhabricatorSearchAbstractDocument $document,7$object) {89$event = $object;1011$document->setDocumentTitle($event->getName());1213$document->addField(14PhabricatorSearchDocumentFieldType::FIELD_BODY,15$event->getDescription());1617$document->addRelationship(18PhabricatorSearchRelationship::RELATIONSHIP_AUTHOR,19$event->getHostPHID(),20PhabricatorPeopleUserPHIDType::TYPECONST,21$event->getDateCreated());2223$document->addRelationship(24PhabricatorSearchRelationship::RELATIONSHIP_OWNER,25$event->getHostPHID(),26PhabricatorPeopleUserPHIDType::TYPECONST,27$event->getDateCreated());2829$document->addRelationship(30$event->getIsCancelled()31? PhabricatorSearchRelationship::RELATIONSHIP_CLOSED32: PhabricatorSearchRelationship::RELATIONSHIP_OPEN,33$event->getPHID(),34PhabricatorCalendarEventPHIDType::TYPECONST,35PhabricatorTime::getNow());36}3738}394041