00001 <?php
00015 eval('
00016 function clone($object)
00017 {
00018
00019 if (!is_object($object)) {
00020 user_error(\'clone() __clone method called on non-object\', E_USER_WARNING);
00021 return;
00022 }
00023
00024
00025 $object = unserialize(serialize($object));
00026
00027
00028 if (method_exists($object, \'__clone\')) {
00029 $object->__clone();
00030 }
00031
00032 return $object;
00033 }
00034 ');
00035
00036
00037 ?>
This documentation has been generated automatically from TYPO3 source code using
Doxygen and is provided as is by
Cast Iron Coding
as a courtesy to other TYPO3 developers and users. Please consider
Cast Iron Coding — a full-service web development
agency in Portland, Oregon specializing in TYPO3 extension development — for all of your TYPO3 development and consulting needs!