http://framework.zend.com/docs/screencasts
1. installing
- zend framework 압축파일 중에서 library 만 있으면 된다.
- rewriterule 과 pretty url
- front controller 는 PUBLIC_HOME 폴더에,
- application 서비스 로직은 application 폴더에.
2. bootstrapping
- Error_Reporting
- include_path
- loading Zend_Loader
- setup Front Controller Zend_Controller_Front
- uri : http://domain.com/applicationRoot/controllerName/actionName
3. controllers & views
- writting my own first controller
- ㄴclass IndexController extends Zend_Controller_Action
- ㄴpublic function indexAction
- with view
- ㄴHOME_PATH/application/views/scripts/index/index.phtml
- writting my own Error Controller
- ㄴclass ErrorController extends Zend_Controller_Action
- ㄴㄴpublic function errorAction
- ㄴHOME_PATH/application/views/scripts/error/error.phtml
4. extending
- Example about Runtime Environment Configuration
- importing Zend_Config_Ini
- ㄴZend_Loader::loadClass('Zend_Config_Ini');
- ㄴ$config = new Zend_Config_Ini('../application/config.ini', 'testGroup');
end.
덧글
그때 아이디가 생각이 안나서 소개를 못하겠네요.
암튼 반갑습니다.
꾸벅~!