mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-04 20:52:43 +01:00
25 lines
456 B
PHP
25 lines
456 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorExternalEditorSettingsPanel
|
||
|
extends PhabricatorEditEngineSettingsPanel {
|
||
|
|
||
|
const PANELKEY = 'editor';
|
||
|
|
||
|
public function getPanelName() {
|
||
|
return pht('External Editor');
|
||
|
}
|
||
|
|
||
|
public function getPanelMenuIcon() {
|
||
|
return 'fa-i-cursor';
|
||
|
}
|
||
|
|
||
|
public function getPanelGroupKey() {
|
||
|
return PhabricatorSettingsApplicationsPanelGroup::PANELGROUPKEY;
|
||
|
}
|
||
|
|
||
|
public function isTemplatePanel() {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
}
|