diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:49:42 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-11-25 17:49:42 +0100 |
commit | dc088e25c2e96969705de7424bf18390b1505354 (patch) | |
tree | 5c3a674d876998a6a95b706a3a7a24f577d7f9e1 /installer/utils.php | |
parent | fdbe5a88049ae708abaf5247db96cf8e9f95f51e (diff) |
Fix installer to work with the new framework architecture
Diffstat (limited to 'installer/utils.php')
-rw-r--r-- | installer/utils.php | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/installer/utils.php b/installer/utils.php deleted file mode 100644 index 0e6cfecf3..000000000 --- a/installer/utils.php +++ /dev/null @@ -1,56 +0,0 @@ -<?php - -/* - +-------------------------------------------------------------------------+ - | Roundcube Webmail installer utilities | - | | - | Copyright (C) 2005-2011, The Roundcube Dev Team | - | | - | Licensed under the GNU General Public License version 3 or | - | any later version with exceptions for skins & plugins. | - | See the README file for a full license statement. | - | | - +-------------------------------------------------------------------------+ - | Author: Thomas Bruederli <roundcube@gmail.com> | - +-------------------------------------------------------------------------+ -*/ - -/** - * Use PHP5 autoload for dynamic class loading - * (copy from program/include/iniset.php) - */ -function __autoload($classname) -{ - $filename = preg_replace( - array( - '/Mail_(.+)/', - '/Net_(.+)/', - '/Auth_(.+)/', - '/^html_.+/', - '/^utf8$/' - ), - array( - 'Mail/\\1', - 'Net/\\1', - 'Auth/\\1', - 'html', - 'utf8.class' - ), - $classname - ); - include_once $filename. '.php'; -} - -/** - * Local callback function for PEAR errors - */ -function __pear_error($err) -{ - rcmail::raise_error(array( - 'code' => $err->getCode(), - 'message' => $err->getMessage(), - )); -} - -// set PEAR error handling (will also load the PEAR main class) -PEAR::setErrorHandling(PEAR_ERROR_CALLBACK, '__pear_error'); |