]> git.donarmstrong.com Git - roundcube.git/blob - installer/utils.php
4294f79899a9a60397d5d0801f7172c54a8c88e4
[roundcube.git] / installer / utils.php
1 <?php
2 /*
3  +-------------------------------------------------------------------------+
4  | Roundcube Webmail IMAP Client                                           |
5  | Version 0.3-20090702                                                    |
6  |                                                                         |
7  | Copyright (C) 2005-2009, Roundcube Dev. - Switzerland                   |
8  |                                                                         |
9  | This program is free software; you can redistribute it and/or modify    |
10  | it under the terms of the GNU General Public License version 2          |
11  | as published by the Free Software Foundation.                           |
12  |                                                                         |
13  | This program is distributed in the hope that it will be useful,         |
14  | but WITHOUT ANY WARRANTY; without even the implied warranty of          |
15  | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           |
16  | GNU General Public License for more details.                            |
17  |                                                                         |
18  | You should have received a copy of the GNU General Public License along |
19  | with this program; if not, write to the Free Software Foundation, Inc., |
20  | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.             |
21  |                                                                         |
22  +-------------------------------------------------------------------------+
23  | Author: Thomas Bruederli <roundcube@gmail.com>                          |
24  +-------------------------------------------------------------------------+
25
26  $Id: index.php 2696 2009-07-02 06:38:26Z thomasb $
27
28 */
29
30 /**
31  * Use PHP5 autoload for dynamic class loading
32  * (copy from program/include/iniset.php)
33  */
34 function __autoload($classname)
35 {
36   $filename = preg_replace(
37       array('/MDB2_(.+)/', '/Mail_(.+)/', '/Net_(.+)/', '/^html_.+/', '/^utf8$/'),
38       array('MDB2/\\1', 'Mail/\\1', 'Net/\\1', 'html', 'utf8.class'),
39       $classname
40   );
41   include_once $filename. '.php';
42 }
43
44
45 /**
46  * Fake internal error handler to catch errors
47  */
48 function raise_error($p)
49 {
50   $rci = rcube_install::get_instance();
51   $rci->raise_error($p);
52 }