mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-28 04:00:17 +01:00
Summary: Ref T4103. Fully modernize the filetree show/hide, durable column show/hide, and profile menu collapse/wide settings. Test Plan: - Toggled filetree on/off, reloaded page, setting stuck. - Same with conpherence column and profile menus. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4103 Differential Revision: https://secure.phabricator.com/D16034
12 lines
232 B
PHP
12 lines
232 B
PHP
<?php
|
|
|
|
final class PhabricatorProfileMenuCollapsedSetting
|
|
extends PhabricatorInternalSetting {
|
|
|
|
const SETTINGKEY = 'profile-menu.collapsed';
|
|
|
|
public function getSettingName() {
|
|
return pht('Profile Menu Collapsed');
|
|
}
|
|
|
|
}
|