Changeset View
Changeset View
Standalone View
Standalone View
src/applications/maniphest/storage/ManiphestTask.php
| Show First 20 Lines • Show All 534 Lines • ▼ Show 20 Lines | /* -( PhabricatorConduitResultInterface )---------------------------------- */ | ||||
| public function getConduitSearchAttachments() { | public function getConduitSearchAttachments() { | ||||
| return array( | return array( | ||||
| id(new PhabricatorBoardColumnsSearchEngineAttachment()) | id(new PhabricatorBoardColumnsSearchEngineAttachment()) | ||||
| ->setAttachmentKey('columns'), | ->setAttachmentKey('columns'), | ||||
| ); | ); | ||||
| } | } | ||||
| public function newSubtypeObject() { | |||||
| $subtype_key = $this->getEditEngineSubtype(); | |||||
| $subtype_map = $this->newEditEngineSubtypeMap(); | |||||
| return idx($subtype_map, $subtype_key); | |||||
| } | |||||
| /* -( PhabricatorFulltextInterface )--------------------------------------- */ | /* -( PhabricatorFulltextInterface )--------------------------------------- */ | ||||
| public function newFulltextEngine() { | public function newFulltextEngine() { | ||||
| return new ManiphestTaskFulltextEngine(); | return new ManiphestTaskFulltextEngine(); | ||||
| } | } | ||||
| Show All 40 Lines | |||||