mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-14 19:02:41 +01:00
35 lines
830 B
PHP
35 lines
830 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorShowFiletreeSetting
|
||
|
extends PhabricatorSelectSetting {
|
||
|
|
||
|
const SETTINGKEY = 'diff-filetree';
|
||
|
|
||
|
const VALUE_DISABLE_FILETREE = 0;
|
||
|
const VALUE_ENABLE_FILETREE = 1;
|
||
|
|
||
|
public function getSettingName() {
|
||
|
return pht('Show Filetree');
|
||
|
}
|
||
|
|
||
|
protected function getControlInstructions() {
|
||
|
return pht(
|
||
|
'When viewing a revision or commit, you can enable a sidebar showing '.
|
||
|
'affected files. When this option is enabled, press {nav %s} to show '.
|
||
|
'or hide the sidebar.',
|
||
|
'f');
|
||
|
}
|
||
|
|
||
|
public function getSettingDefaultValue() {
|
||
|
return self::VALUE_DISABLE_FILETREE;
|
||
|
}
|
||
|
|
||
|
protected function getSelectOptions() {
|
||
|
return array(
|
||
|
self::VALUE_DISABLE_FILETREE => pht('Disable Filetree'),
|
||
|
self::VALUE_ENABLE_FILETREE => pht('Enable Filetree'),
|
||
|
);
|
||
|
}
|
||
|
|
||
|
}
|