diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-22 02:13:39 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-22 02:13:39 -0700 |
commit | 11f2eaa16dc3e41b758235e7bc1a281e19aca96e (patch) | |
tree | 3d2aff70c4efa8c51f13c3942bf6f65f1c9ad409 /boot.php | |
parent | a9befec59e2e608b507e6d1f99a5a2fe70978c3f (diff) | |
download | volse-hubzilla-11f2eaa16dc3e41b758235e7bc1a281e19aca96e.tar.gz volse-hubzilla-11f2eaa16dc3e41b758235e7bc1a281e19aca96e.tar.bz2 volse-hubzilla-11f2eaa16dc3e41b758235e7bc1a281e19aca96e.zip |
introduction cleanup - email notification flags
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -13,6 +13,15 @@ define ( 'DIRECTION_IN', 1); define ( 'DIRECTION_OUT', 2); define ( 'DIRECTION_BOTH', 3); +define ( 'NOTIFY_INTRO', 0x0001 ); +define ( 'NOTIFY_CONFIRM', 0x0002 ); +define ( 'NOTIFY_WALL', 0x0004 ); +define ( 'NOTIFY_COMMENT', 0x0008 ); +define ( 'NOTIFY_MAIL', 0x0010 ); + + + + if(! class_exists('App')) { class App { |