Path: blob/master/src/applications/diviner/search/DivinerLiveSymbolFulltextEngine.php
12256 views
<?php12final class DivinerLiveSymbolFulltextEngine3extends PhabricatorFulltextEngine {45protected function buildAbstractDocument(6PhabricatorSearchAbstractDocument $document,7$object) {89$atom = $object;10$book = $atom->getBook();1112$document13->setDocumentTitle($atom->getTitle())14->setDocumentCreated($book->getDateCreated())15->setDocumentModified($book->getDateModified());1617$document->addField(18PhabricatorSearchDocumentFieldType::FIELD_BODY,19$atom->getSummary());2021$document->addRelationship(22PhabricatorSearchRelationship::RELATIONSHIP_BOOK,23$atom->getBookPHID(),24DivinerBookPHIDType::TYPECONST,25PhabricatorTime::getNow());2627$document->addRelationship(28PhabricatorSearchRelationship::RELATIONSHIP_REPOSITORY,29$atom->getRepositoryPHID(),30PhabricatorRepositoryRepositoryPHIDType::TYPECONST,31PhabricatorTime::getNow());3233$document->addRelationship(34$atom->getGraphHash()35? PhabricatorSearchRelationship::RELATIONSHIP_OPEN36: PhabricatorSearchRelationship::RELATIONSHIP_CLOSED,37$atom->getBookPHID(),38DivinerBookPHIDType::TYPECONST,39PhabricatorTime::getNow());40}4142}434445