Plugin programmiert, was mache ich falsch ?

Niemand eine Idee ?

Ich hab die Exception nochmal etwas genauer analysiert, und gesehen, dass der Fehler durch die engine/Shopware/Controllers/Frontend/account.php hervorgerufen wird, wobei die restlichen Sachen der Exception wohl folgefehler sind, weil die $orderData wohl nix kriegt
 

    public function ordersAction()
    {
        $destinationPage = (int) $this->Request()->sPage;
        $orderData = $this->admin->sGetOpenOrderData($destinationPage);
        $orderData = $this->applyTrackingUrl($orderData);

        $this->View()->assign('sOpenOrders', $orderData['orderData']);
        $this->View()->assign('sNumberPages', $orderData['numberOfPages']);
        $this->View()->assign('sPages', $orderData['pages']);

        //this has to be assigned here because the config method in smarty can't handle array structures
        $this->View()->assign('sDownloadAvailablePaymentStatus', Shopware()->Config()->get('downloadAvailablePaymentStatus'));
    }

Hieraus resultierend stellt sich jetzt die Frage für mich, warum der call $orderData = $this->admin->sGetOpenOrderData($destinationPage); in der account.php scheinbar keine Werte kriegt.