Propel Autoload

affiliate_g

Grünschnabel
Hey leute,

hab da ein kleines Problem mit meiner eigenen Autoload und Autoload von Propel.
Habe deshalb versucht die Autoload von Propel zu laden nur irgendwie funktioniert das nicht so ganz, hat vl. jemand einen Ansatz woran es happern könnte dabei?

PHP:
class AutloadHandling extends Propel
   {       
        public static function Handle() {
            function autoload($classname) {
                if(parent::autoload($classname)) {
                    return true;
                }
                
                if(!class_exists($classname)) {
                        //hier das include
                }
            }
            spl_autoload_register('autoload');    
        }
    }

jetzt folgendes Problem, ich starte das ganze und folgender fehler kommt....

PHP:
Fatal error: Cannot access parent:: when no class scope is active in

habt ihr evtl. eine ahnung?

besten dank,
Lg
 
Zurück