Zend Flashcards
What directory can you find configuration files to set up Zend directives?
Found in application/configs/application.ini
What command is used to create a QuickStart project in send?
% zf create project quickstart
What are action controllers?
Your application’s action controllers contain your application workflow, and do the work of mapping your requests to the appropriate models and views. An action controller should have one or more methods ending in “Action”; these methods may then be requested via the web.
What does Zend_Layout::startMvc() do ?
It creates an instance of Zend_Layout with any optional configuration you provide it. It then registers a front controller plugin that renders the layout with any application content once the dispatch loop is done, and registers an action helper to allow access to the layout object from your action controllers