Differential D21196 Diff 50489 src/applications/files/document/render/PhabricatorDocumentRenderingEngine.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/files/document/render/PhabricatorDocumentRenderingEngine.php
| Show First 20 Lines • Show All 299 Lines • ▼ Show 20 Lines | if ($ref) { | ||||
| if ($label) { | if ($label) { | ||||
| $crumbs->addTextCrumb($label); | $crumbs->addTextCrumb($label); | ||||
| } | } | ||||
| } | } | ||||
| return $crumbs; | return $crumbs; | ||||
| } | } | ||||
| public function getRefViewURI( | |||||
| PhabricatorDocumentRef $ref, | |||||
| PhabricatorDocumentEngine $engine) { | |||||
| return $this->newRefViewURI($ref, $engine); | |||||
| } | |||||
| abstract protected function newRefViewURI( | abstract protected function newRefViewURI( | ||||
| PhabricatorDocumentRef $ref, | PhabricatorDocumentRef $ref, | ||||
| PhabricatorDocumentEngine $engine); | PhabricatorDocumentEngine $engine); | ||||
| abstract protected function newRefRenderURI( | abstract protected function newRefRenderURI( | ||||
| PhabricatorDocumentRef $ref, | PhabricatorDocumentRef $ref, | ||||
| PhabricatorDocumentEngine $engine); | PhabricatorDocumentEngine $engine); | ||||
| Show All 23 Lines | |||||