2011-03-30 19:21:09 -07:00
|
|
|
<?php
|
|
|
|
|
2015-01-02 15:20:08 +11:00
|
|
|
final class PhabricatorDisplayPreferencesSettingsPanel
|
2016-06-03 06:35:08 -07:00
|
|
|
extends PhabricatorEditEngineSettingsPanel {
|
2011-03-30 19:21:09 -07:00
|
|
|
|
2016-06-03 06:35:08 -07:00
|
|
|
const PANELKEY = 'display';
|
2012-08-13 12:37:26 -07:00
|
|
|
|
|
|
|
public function getPanelName() {
|
|
|
|
return pht('Display Preferences');
|
|
|
|
}
|
2011-03-30 19:21:09 -07:00
|
|
|
|
2016-06-03 05:31:33 -07:00
|
|
|
public function getPanelGroupKey() {
|
|
|
|
return PhabricatorSettingsApplicationsPanelGroup::PANELGROUPKEY;
|
2012-08-13 12:37:26 -07:00
|
|
|
}
|
|
|
|
|
2016-06-05 12:38:04 -07:00
|
|
|
public function isTemplatePanel() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-03-30 19:21:09 -07:00
|
|
|
}
|