diff options
author | friendica <info@friendica.com> | 2014-11-04 15:24:24 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-11-04 15:24:24 -0800 |
commit | ba7f1bb8eee5f5374246a512b6c510f874f417ce (patch) | |
tree | aa40f387591c06721646bab1cb9528bcc1457d52 /boot.php | |
parent | 8163230e779f0b2150d008d3144440b46566ac76 (diff) | |
download | volse-hubzilla-ba7f1bb8eee5f5374246a512b6c510f874f417ce.tar.gz volse-hubzilla-ba7f1bb8eee5f5374246a512b6c510f874f417ce.tar.bz2 volse-hubzilla-ba7f1bb8eee5f5374246a512b6c510f874f417ce.zip |
configurable visual alerts/notifications
Diffstat (limited to 'boot.php')
-rwxr-xr-x | boot.php | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -377,6 +377,22 @@ define ( 'NOTIFY_POKE', 0x0200 ); define ( 'NOTIFY_SYSTEM', 0x8000 ); +/** + * visual notification options + */ + +define ( 'VNOTIFY_NETWORK', 0x0001 ); +define ( 'VNOTIFY_CHANNEL', 0x0002 ); +define ( 'VNOTIFY_MAIL', 0x0004 ); +define ( 'VNOTIFY_EVENT', 0x0008 ); +define ( 'VNOTIFY_EVENTTODAY', 0x0010 ); +define ( 'VNOTIFY_BIRTHDAY', 0x0020 ); +define ( 'VNOTIFY_SYSTEM', 0x0040 ); +define ( 'VNOTIFY_INFO', 0x0080 ); +define ( 'VNOTIFY_ALERT', 0x0100 ); +define ( 'VNOTIFY_INTRO', 0x0200 ); +define ( 'VNOTIFY_REGISTER', 0x0400 ); + // We need a flag to designate that a site is a // global directory mirror, but probably doesn't |