Page MenuHomec4science

PhabricatorProjectsAncestorsSearchEngineAttachment.php
No OneTemporary

File Metadata

Created
Mon, Jul 29, 17:25

PhabricatorProjectsAncestorsSearchEngineAttachment.php

<?php
final class PhabricatorProjectsAncestorsSearchEngineAttachment
extends PhabricatorSearchEngineAttachment {
public function getAttachmentName() {
return pht('Project Ancestors');
}
public function getAttachmentDescription() {
return pht('Get the full ancestor list for each project.');
}
public function getAttachmentForObject($object, $data, $spec) {
$ancestors = $object->getAncestorProjects();
// Order ancestors by depth, ascending.
$ancestors = array_reverse($ancestors);
$results = array();
foreach ($ancestors as $ancestor) {
$results[] = $ancestor->getRefForConduit();
}
return array(
'ancestors' => $results,
);
}
}

Event Timeline