Path: blob/master/src/applications/files/document/PhabricatorVoidDocumentEngine.php
12241 views
<?php12final class PhabricatorVoidDocumentEngine3extends PhabricatorDocumentEngine {45const ENGINEKEY = 'void';67public function getViewAsLabel(PhabricatorDocumentRef $ref) {8return null;9}1011protected function getDocumentIconIcon(PhabricatorDocumentRef $ref) {12return 'fa-file';13}1415protected function getContentScore(PhabricatorDocumentRef $ref) {16return 1000;17}1819protected function getByteLengthLimit() {20return null;21}2223protected function canRenderDocumentType(PhabricatorDocumentRef $ref) {24return true;25}2627protected function newDocumentContent(PhabricatorDocumentRef $ref) {28$message = pht(29'No document engine can render the contents of this file.');3031$container = phutil_tag(32'div',33array(34'class' => 'document-engine-message',35),36$message);3738return $container;39}4041}424344