1
<?php
2
/**
3
* @version $Id: constants.php 12740 2009-10-20 19:39:07Z alex $
4
* @package In-Bulletin
5
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
6
* @license GNU/GPL
7
* In-Portal is Open Source software.
8
* This means that this software may have been modified pursuant
9
* the GNU General Public License, and as distributed it includes
10
* or is derivative of works licensed under the GNU General Public License
11
* or other free or open source software licenses.
12
* See http://www.in-portal.org/license for copyright notices and details.
13
*/
14
15
// Private Message Statuses: 0 - Unread, 1 - Viewed', 2 - Read, 3 - Replyed, 4 - Sent
16
define(
'PM_STATUS_UNREAD'
,
0
);
17
define(
'PM_STATUS_READ'
,
2
);
18
19
// Private Message Folders
20
define(
'PM_FOLDER_INBOX'
,
0
);
21
define(
'PM_FOLDER_SENT'
, -
1
);
22
23
define(
'SMILEYS_PATH'
, IMAGES_PATH.
'emoticons/'
);