Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F9121797
utils.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
713 B
Referenced Files
None
Subscribers
None
utils.php
View Options
<?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
,
ENT_COMPAT
,
'UTF-8'
);
}
/**
* Fake rinternal error handler to catch errors
*/
function
raise_error
(
$p
)
{
$rci
=
rcube_install
::
get_instance
();
$rci
->
raise_error
(
$p
);
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Jul 30, 3:03 AM (12 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127188
Default Alt Text
utils.php (713 B)
Attached To
Mode
R3 roundcubemail
Attached
Detach File
Event Timeline
Log In to Comment