Zend Framework Documentations

Id Category Code Examples Test Code Links Remarks

View

cli commands 
zf create project zfproject
cd zfproject
 
 
/zfdocs/index/page:1/sort:id/direction:asc   

View

cli 
zf create project blog 
#Create a blog project with its default folder structures.
 
 
   

View

cli 
zf create controller Posts 
# Create a controller class within blog project 
# (with view placeholders).

 
 
   

View

cli 
zf create action view Posts 
# Create a viewAction inside PostsController 
# class, need to add code to retrieve database data.
 
 
   

View

entry point 
blog/public/index.php
 
Public entry point of a web application (this seldomly changes).
Main purpose: 

1. Set up path to application directory and application evironment; 
2. Set up include path for the application; 
3. Set up application configuration parameters; 
4. Run bootstrap to start the application dispatch loop (request/response loop). 
 
   

View

entry point 
blog/public/.htacces
 
Redirect all web application url access to index.php 
to further handling. 
 
You can set development environment variable here too. 
 
http://bsagols.wordpress.com/2010/09/02/zend-framework-rewriting-rules-explained-htaccess/   

View

entry point 
blog/application/Bootstrap.php
 
=> Bootstrap do all necessary preparations for application 
   (such as autoload classes, resources defined in 
    application.ini file or under its own _init functions). 
=> It makes its resources application wide accessible. 
 
   

View

docs 
http://lordseeks.com/Zend/Zend-framework-overview.html
 
 
http://lordseeks.com/Zend/Zend-framework-overview.html   

Page 1 of 1, showing 8 records out of 8 total, starting on record 1, ending on 8

<< previous | | next >>

Actions