summaryrefslogtreecommitdiffstats
path: root/code/message.inc.php
blob: c351e70b5430ff180bc6e9fd81bc840e9c39a920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?PHP
  if(!defined('MESSAGE_INC')) {
    define('MESSAGE_INC', 1);
    
    require_once('config/config.inc.php');
    
    require_once('code/util.inc.php');
    
    $message['Error']			= 'Error';
    $message['PageNotFound']		= 'The page \'$page\' does not exist.';
    $message['Forbidden']		= 'The page \'$page\' is protected.';
    $message['InternalError']	= 'An internal error has occourred.';
    $message['LoginError']		= 'Login failed. Username or password is wrong.';
    
    if($config['language'] != 'en') @include('lang/' . $config['language'] . '.inc.php');
    
    function Message($type, $data = array()) {
      return Subst($GLOBALS['message'][$type], $data);
    }
    
    function ErrorMessage($type, $data = array()) {
      return '<span class="error">' . Subst($GLOBALS['message'][$type], $data) . '</span>';
    }
  }
?>