mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-10 03:14:48 +01:00
Summary: This adds a "column" icon into crumbs, like in workboards, for expanding or hiding the "Widget Pane". This is per user sticky and defaults to off. Test Plan: View a Conpherence Room, see no widgets by default. Toggle it on, see widget. Reload page, see widget stick. Verify mobile, tablets ignore hiding. Reviewers: epriestley Reviewed By: epriestley Subscribers: Korvin Maniphest Tasks: T10364 Differential Revision: https://secure.phabricator.com/D16533
12 lines
241 B
PHP
12 lines
241 B
PHP
<?php
|
|
|
|
final class PhabricatorConpherenceWidgetVisibleSetting
|
|
extends PhabricatorInternalSetting {
|
|
|
|
const SETTINGKEY = 'conpherence-widget';
|
|
|
|
public function getSettingName() {
|
|
return pht('Conpherence Widget Pane Visible');
|
|
}
|
|
|
|
}
|