1<?php
2/**
3 * XOOPS Notifications
4 *
5 * You may not change or alter any portion of this comment or credits
6 * of supporting developers from this source code or any supporting source code
7 * which is considered copyrighted (c) material of the original comment or credit authors.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
11 *
12 * @copyright       (c) 2000-2016 XOOPS Project (www.xoops.org)
13 * @license             GNU GPL 2 (http://www.gnu.org/licenses/gpl-2.0.html)
14 * @package             kernel
15 * @subpackage          Xoop Notifications Defines
16 * @since               2.0.0
17 * @author              Kazumi Ono (AKA onokazu) http://www.myweb.ne.jp/, http://jp.xoops.org/
18 */
19defined('XOOPS_ROOT_PATH') || exit('Restricted access');
20
21define('XOOPS_NOTIFICATION_MODE_SENDALWAYS', 0);
22define('XOOPS_NOTIFICATION_MODE_SENDONCETHENDELETE', 1);
23define('XOOPS_NOTIFICATION_MODE_SENDONCETHENWAIT', 2);
24define('XOOPS_NOTIFICATION_MODE_WAITFORLOGIN', 3);
25
26define('XOOPS_NOTIFICATION_METHOD_DISABLE', 0);
27define('XOOPS_NOTIFICATION_METHOD_PM', 1);
28define('XOOPS_NOTIFICATION_METHOD_EMAIL', 2);
29
30define('XOOPS_NOTIFICATION_DISABLE', 0);
31define('XOOPS_NOTIFICATION_ENABLEBLOCK', 1);
32define('XOOPS_NOTIFICATION_ENABLEINLINE', 2);
33define('XOOPS_NOTIFICATION_ENABLEBOTH', 3);
34