mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
Modularize Conpherence notification preferences
Summary: Ref T4103. This is a weird standalone setting that I didn't clean up earlier. Also fix an issue with the PronounSetting and the Editor not interacting properly. Test Plan: Edited using new EditEngine UI. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4103 Differential Revision: https://secure.phabricator.com/D16014
This commit is contained in:
parent
3849a69995
commit
57c2f61b75
3 changed files with 39 additions and 0 deletions
|
@ -2145,6 +2145,7 @@ phutil_register_library_map(array(
|
||||||
'PhabricatorConfigVersionsModule' => 'applications/config/module/PhabricatorConfigVersionsModule.php',
|
'PhabricatorConfigVersionsModule' => 'applications/config/module/PhabricatorConfigVersionsModule.php',
|
||||||
'PhabricatorConfigWelcomeController' => 'applications/config/controller/PhabricatorConfigWelcomeController.php',
|
'PhabricatorConfigWelcomeController' => 'applications/config/controller/PhabricatorConfigWelcomeController.php',
|
||||||
'PhabricatorConpherenceApplication' => 'applications/conpherence/application/PhabricatorConpherenceApplication.php',
|
'PhabricatorConpherenceApplication' => 'applications/conpherence/application/PhabricatorConpherenceApplication.php',
|
||||||
|
'PhabricatorConpherenceNotificationsSetting' => 'applications/settings/setting/PhabricatorConpherenceNotificationsSetting.php',
|
||||||
'PhabricatorConpherencePreferencesSettingsPanel' => 'applications/settings/panel/PhabricatorConpherencePreferencesSettingsPanel.php',
|
'PhabricatorConpherencePreferencesSettingsPanel' => 'applications/settings/panel/PhabricatorConpherencePreferencesSettingsPanel.php',
|
||||||
'PhabricatorConpherenceThreadPHIDType' => 'applications/conpherence/phid/PhabricatorConpherenceThreadPHIDType.php',
|
'PhabricatorConpherenceThreadPHIDType' => 'applications/conpherence/phid/PhabricatorConpherenceThreadPHIDType.php',
|
||||||
'PhabricatorConsoleApplication' => 'applications/console/application/PhabricatorConsoleApplication.php',
|
'PhabricatorConsoleApplication' => 'applications/console/application/PhabricatorConsoleApplication.php',
|
||||||
|
@ -6676,6 +6677,7 @@ phutil_register_library_map(array(
|
||||||
'PhabricatorConfigVersionsModule' => 'PhabricatorConfigModule',
|
'PhabricatorConfigVersionsModule' => 'PhabricatorConfigModule',
|
||||||
'PhabricatorConfigWelcomeController' => 'PhabricatorConfigController',
|
'PhabricatorConfigWelcomeController' => 'PhabricatorConfigController',
|
||||||
'PhabricatorConpherenceApplication' => 'PhabricatorApplication',
|
'PhabricatorConpherenceApplication' => 'PhabricatorApplication',
|
||||||
|
'PhabricatorConpherenceNotificationsSetting' => 'PhabricatorSelectSetting',
|
||||||
'PhabricatorConpherencePreferencesSettingsPanel' => 'PhabricatorSettingsPanel',
|
'PhabricatorConpherencePreferencesSettingsPanel' => 'PhabricatorSettingsPanel',
|
||||||
'PhabricatorConpherenceThreadPHIDType' => 'PhabricatorPHIDType',
|
'PhabricatorConpherenceThreadPHIDType' => 'PhabricatorPHIDType',
|
||||||
'PhabricatorConsoleApplication' => 'PhabricatorApplication',
|
'PhabricatorConsoleApplication' => 'PhabricatorApplication',
|
||||||
|
|
|
@ -99,6 +99,12 @@ final class PhabricatorUserPreferencesEditor
|
||||||
$actor = $this->getActor();
|
$actor = $this->getActor();
|
||||||
$settings = PhabricatorSetting::getAllEnabledSettings($actor);
|
$settings = PhabricatorSetting::getAllEnabledSettings($actor);
|
||||||
|
|
||||||
|
foreach ($settings as $key => $setting) {
|
||||||
|
$setting = clone $setting;
|
||||||
|
$setting->setViewer($actor);
|
||||||
|
$settings[$key] = $setting;
|
||||||
|
}
|
||||||
|
|
||||||
switch ($type) {
|
switch ($type) {
|
||||||
case PhabricatorUserPreferencesTransaction::TYPE_SETTING:
|
case PhabricatorUserPreferencesTransaction::TYPE_SETTING:
|
||||||
foreach ($xactions as $xaction) {
|
foreach ($xactions as $xaction) {
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
final class PhabricatorConpherenceNotificationsSetting
|
||||||
|
extends PhabricatorSelectSetting {
|
||||||
|
|
||||||
|
const SETTINGKEY = 'conph-notifications';
|
||||||
|
|
||||||
|
const VALUE_CONPHERENCE_EMAIL = '0';
|
||||||
|
const VALUE_CONPHERENCE_NOTIFY = '1';
|
||||||
|
|
||||||
|
public function getSettingName() {
|
||||||
|
return pht('Conpherence Notifications');
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getControlInstructions() {
|
||||||
|
return pht(
|
||||||
|
'Choose the default notification behavior for Conpherence rooms.');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function getSettingDefaultValue() {
|
||||||
|
return self::VALUE_CONPHERENCE_EMAIL;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function getSelectOptions() {
|
||||||
|
return array(
|
||||||
|
self::VALUE_CONPHERENCE_EMAIL => pht('Send Email'),
|
||||||
|
self::VALUE_CONPHERENCE_NOTIFY => pht('Send Notifications'),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue