mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-12 23:08:37 +01:00
48 lines
1 KiB
PHP
48 lines
1 KiB
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorRemarkupDocumentEngine
|
||
|
extends PhabricatorDocumentEngine {
|
||
|
|
||
|
const ENGINEKEY = 'remarkup';
|
||
|
|
||
|
public function getViewAsLabel(PhabricatorDocumentRef $ref) {
|
||
|
return pht('View as Remarkup');
|
||
|
}
|
||
|
|
||
|
protected function getDocumentIconIcon(PhabricatorDocumentRef $ref) {
|
||
|
return 'fa-file-text-o';
|
||
|
}
|
||
|
|
||
|
protected function getContentScore(PhabricatorDocumentRef $ref) {
|
||
|
$name = $ref->getName();
|
||
|
if (preg_match('/\\.remarkup\z/i', $name)) {
|
||
|
return 2000;
|
||
|
}
|
||
|
|
||
|
return 500;
|
||
|
}
|
||
|
|
||
|
protected function canRenderDocumentType(PhabricatorDocumentRef $ref) {
|
||
|
return $ref->isProbablyText();
|
||
|
}
|
||
|
|
||
|
protected function newDocumentContent(PhabricatorDocumentRef $ref) {
|
||
|
$viewer = $this->getViewer();
|
||
|
|
||
|
$content = $ref->loadData();
|
||
|
$content = phutil_utf8ize($content);
|
||
|
|
||
|
$remarkup = new PHUIRemarkupView($viewer, $content);
|
||
|
|
||
|
$container = phutil_tag(
|
||
|
'div',
|
||
|
array(
|
||
|
'class' => 'document-engine-remarkup',
|
||
|
),
|
||
|
$remarkup);
|
||
|
|
||
|
return $container;
|
||
|
}
|
||
|
|
||
|
}
|