Zend Flashcards

0
Q

What directory can you find configuration files to set up Zend directives?

A

Found in application/configs/application.ini

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

What command is used to create a QuickStart project in send?

A

% zf create project quickstart

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are action controllers?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does Zend_Layout::startMvc() do ?

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly