summaryrefslogtreecommitdiff
path: root/installer/utils.php
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2008-10-27 20:11:32 +0000
committerthomascube <thomas@roundcube.net>2008-10-27 20:11:32 +0000
commitfee8c6ceab0f66d83e5c62eae44ee7c624847972 (patch)
tree868b46d76b02de40c9710fe1baf0b6c23f23e542 /installer/utils.php
parentcb15aaa2654c00ecc78880c7daec7acee6fa61ec (diff)
First version of the commandline update script
Diffstat (limited to 'installer/utils.php')
-rw-r--r--installer/utils.php40
1 files changed, 40 insertions, 0 deletions
diff --git a/installer/utils.php b/installer/utils.php
new file mode 100644
index 000000000..76a335762
--- /dev/null
+++ b/installer/utils.php
@@ -0,0 +1,40 @@
+<?php
+
+
+/**
+ * Use PHP5 autoload for dynamic class loading
+ * (copy from program/incllude/iniset.php)
+ */
+function __autoload($classname)
+{
+ $filename = preg_replace(
+ array('/MDB2_(.+)/', '/Mail_(.+)/', '/^html_.+/', '/^utf8$/'),
+ array('MDB2/\\1', 'Mail/\\1', 'html', 'utf8.class'),
+ $classname
+ );
+ include_once $filename. '.php';
+}
+
+
+/**
+ * Shortcut function for htmlentities()
+ *
+ * @param string String to quote
+ * @return string The html-encoded string
+ */
+function Q($string)
+{
+ return htmlentities($string);
+}
+
+
+/**
+ * Fake rinternal error handler to catch errors
+ */
+function raise_error($p)
+{
+ $rci = rcube_install::get_instance();
+ $rci->raise_error($p);
+}
+
+