Path: blob/master/src/applications/fund/search/FundInitiativeFulltextEngine.php
12256 views
<?php12final class FundInitiativeFulltextEngine3extends PhabricatorFulltextEngine {45protected function buildAbstractDocument(6PhabricatorSearchAbstractDocument $document,7$object) {89$initiative = $object;1011$document->setDocumentTitle($initiative->getName());1213$document->addRelationship(14PhabricatorSearchRelationship::RELATIONSHIP_AUTHOR,15$initiative->getOwnerPHID(),16PhabricatorPeopleUserPHIDType::TYPECONST,17$initiative->getDateCreated());1819$document->addRelationship(20PhabricatorSearchRelationship::RELATIONSHIP_OWNER,21$initiative->getOwnerPHID(),22PhabricatorPeopleUserPHIDType::TYPECONST,23$initiative->getDateCreated());2425$document->addRelationship(26$initiative->isClosed()27? PhabricatorSearchRelationship::RELATIONSHIP_CLOSED28: PhabricatorSearchRelationship::RELATIONSHIP_OPEN,29$initiative->getPHID(),30FundInitiativePHIDType::TYPECONST,31PhabricatorTime::getNow());32}33}343536