Ich erstelle eine modulare Anwendung im Zend Framework und habe Schwierigkeiten, modulspezifische View-Helfer zu laden.
Meine Verzeichnisstruktur sieht folgendermaßen aus...
application
---configs
---controllers
---forms
---layouts
---models
---modules
------user
---------controllers
---------forms
---------modules
---------views
------------filters
------------helpers
---------------currentUser.php
------------scripts
---------Bootstrap.php
---views
---Bootstrap.php
Im Grunde möchte ich auf den View-Helfer zugreifen, der in currentUser.php enthalten ist, aber wenn ich folgendes einfüge
currentUser(); ?>
erhalte ich eine Fehlermeldung, in der steht, dass die Datei nicht gefunden werden kann.
Was muss ich meiner Konfigurationsdatei hinzufügen, um diese Helfer zu laden?
Meine Konfiguration sieht ungefähr so aus...
Autoloadernamespaces[] = "Zend_"
Autoloadernamespaces[] = "Default_"
Autoloadernamespaces[] = "User_"
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
includePaths.library = APPLICATION_PATH "/../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers"
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.layout.layoutPath = APPLICATION_PATH "/layouts/scripts/"
resources.view[] =
resources.modules[] =