2013-01-03 18:29:19 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
final class PhabricatorNotificationConfigOptions
|
|
|
|
extends PhabricatorApplicationConfigOptions {
|
|
|
|
|
|
|
|
public function getName() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Notifications');
|
2013-01-03 18:29:19 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function getDescription() {
|
2014-06-09 20:36:49 +02:00
|
|
|
return pht('Configure real-time notifications.');
|
2013-01-03 18:29:19 +01:00
|
|
|
}
|
|
|
|
|
2016-01-28 17:40:22 +01:00
|
|
|
public function getIcon() {
|
2015-02-02 19:17:25 +01:00
|
|
|
return 'fa-bell';
|
|
|
|
}
|
|
|
|
|
2015-02-09 22:10:56 +01:00
|
|
|
public function getGroup() {
|
|
|
|
return 'core';
|
|
|
|
}
|
|
|
|
|
2013-01-03 18:29:19 +01:00
|
|
|
public function getOptions() {
|
|
|
|
return array(
|
|
|
|
$this->newOption('notification.enabled', 'bool', false)
|
2013-01-09 17:14:26 +01:00
|
|
|
->setBoolOptions(
|
2013-01-03 18:29:19 +01:00
|
|
|
array(
|
2014-06-09 20:36:49 +02:00
|
|
|
pht('Enable Real-Time Notifications'),
|
|
|
|
pht('Disable Real-Time Notifications'),
|
2013-01-03 18:29:19 +01:00
|
|
|
))
|
|
|
|
->setSummary(pht('Enable real-time notifications.'))
|
|
|
|
->setDescription(
|
|
|
|
pht(
|
|
|
|
"Enable real-time notifications. You must also run a Node.js ".
|
|
|
|
"based notification server for this to work. Consult the ".
|
|
|
|
"documentation in 'Notifications User Guide: Setup and ".
|
|
|
|
"Configuration' for instructions.")),
|
|
|
|
$this->newOption(
|
|
|
|
'notification.client-uri',
|
|
|
|
'string',
|
2013-01-24 21:05:29 +01:00
|
|
|
'http://localhost:22280/')
|
2013-01-03 18:29:19 +01:00
|
|
|
->setDescription(pht('Location of the client server.')),
|
|
|
|
$this->newOption(
|
|
|
|
'notification.server-uri',
|
|
|
|
'string',
|
2013-01-24 21:05:29 +01:00
|
|
|
'http://localhost:22281/')
|
2013-01-03 18:29:19 +01:00
|
|
|
->setDescription(pht('Location of the notification receiver server.')),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|