<?php
/**
 * This file is part of
 * pragmaMx - Web Content Management System.
 * Copyright by pragmaMx Developer Team - http://www.pragmamx.org
 *
 * pragmaMx is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * $Revision: 1.7.6.2 $
 * $Author: tora60 $
 * $Date: 2009/03/31 22:14:12 $
 *
 * this file based on:
 * php-nuke Web Portal System - http://phpnuke.org/
 * Thatware - http://thatware.org/
 * Part of phpBB integration
 * Copyright (c) 2001 by
 * Richard Tirtadji AKA King Richard (rtirtadji@hotmail.com)
 * Hutdik Hermawan AKA hotFix (hutdik76@hotmail.com)
 * http://www.phpnuke.web.id
 */

defined('mxMainFileLoaded') or die('access denied');
global $bgcolor2, $textcolor2, $bgcolor1, $textcolor1, $bgcolor3, $language;

$allow_html = 0;
$allow_bbcode = 1;
// auch ungelesene Nachrichten loeschen?
$allow_delete_unread = 1;

$subjectdefaulticon = "icon1.gif";
$refresh = 1 ; # the Time in seconds for auto-refresh to messagelist, when delete or send messages

$url_icons = "modules/" . basename(dirname(__FILE__)) . "/images/icons";
$url_smiles = "modules/" . basename(dirname(__FILE__)) . "/images/smilies";
$url_images = "modules/" . basename(dirname(__FILE__)) . "/images";
$url_avatar = MX_PATH_AVATAR;
$blankavatar = "040.gif";

$smilie[] = array(':)', 'Smile', 'smile.gif');
$smilie[] = array(';)', 'Wink', 'wink.gif');
$smilie[] = array(':(', 'Sad', 'sad.gif');
$smilie[] = array(':lol:', 'Laughing', 'bigsmile.gif');
$smilie[] = array(':D', 'Very Happy', 'thumbup.gif');
$smilie[] = array(':o', 'Surprised', 'shocked.gif');
$smilie[] = array('8)', 'Cool', 'cool.gif');
$smilie[] = array(':cry:', 'Crying (very sad)', 'ezpi_worried.gif');
$smilie[] = array(':x', 'Mad', 'mad.gif');

$smilies_in_buddy = 1; # Smilies im Messanger verwenden

$popupwidth = 250 ; # Breite des Popup in Px
$poptableborder = 1; # Rahmen um Popup

$buddymsg_width = 390 ; # Breite des Nachrichten-Popup in Px
$buddymsg_height = 240 ; # Höhe des Nachrichten-Popup in Px

/* Anzahl der Zeilen in der Liste */
$pagesize = 25;

/**
 * ######### nicht aendern !! ##########################################################
 */
if (@file_exists("$url_images/buttons/" . $GLOBALS['currentlang'] . "")) {
    $url_button = "$url_images/buttons/" . $GLOBALS['currentlang'] . "";
} else {
    $url_button = "$url_images/buttons/german";
}

?>