Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- php5
- httpd.conf
- JavaScript
- Laravel
- BIND
- fstab
- MOUNT
- Fedora
- MySQL
- GlusterFS
- tw_cli
- VirtualBox
- redmine
- VMware
- xampp
- Linux
- CentOS
- ftp
- Subversion
- exception
- Trac
- ubuntu
- nateon
- AIR
- 명령어
- vsftpd
- Network
- APM
- php
- 라라벨
Archives
- Today
- Total
어제와 똑같이 살면서 다른 미래를 기대하지 말자
view 렌더링 기본디렉토리 구조변경 본문
/application
abstract class Angelos_Controller_Action extends Zend_Controller_Action
{
public function init()
{
$request = $this->getRequest();
// view 렌더링 기본 디렉토리 지정
$this->view->setBasePath(
'../application/views/'
);
$this->view->setScriptPath(
'../application/views/scripts/' .
$request->getModuleName()
);
// view 확장자 변경
/modules
/default
/controllers
IndexController.php
/owner
/controllers
IndexController.php
/views
/layouts
/scripts
/default
/index
index.tpl
/owner
/index
index.tpl
abstract class Angelos_Controller_Action extends Zend_Controller_Action
{
public function init()
{
$request = $this->getRequest();
// view 렌더링 기본 디렉토리 지정
$this->view->setBasePath(
'../application/views/'
);
$this->view->setScriptPath(
'../application/views/scripts/' .
$request->getModuleName()
);
// view 확장자 변경
$this->_helper->viewRenderer->setViewSuffix('tpl');
// 자동렌더링 사용안함..
$this->_helper->viewRenderer->setNoRender();
}
}
Zend_Controller_Action을 확장하여 추상클래스를 만들어 처리함..
보통 view 파일 위치는 Controller 깊이마다 views/scripts를 기본 경로로 하는데..
모든 view 파일들을 따로 상단 views로 모아봤음..
// 자동렌더링 사용안함..
$this->_helper->viewRenderer->setNoRender();
}
}
Zend_Controller_Action을 확장하여 추상클래스를 만들어 처리함..
보통 view 파일 위치는 Controller 깊이마다 views/scripts를 기본 경로로 하는데..
모든 view 파일들을 따로 상단 views로 모아봤음..
'IT관심분야 > PHP' 카테고리의 다른 글
[PHP] 소스가 그대로 노출되는 현상 (short_open_tag = On) (1) | 2010.11.12 |
---|---|
layout 렌더링 경로지정 (0) | 2008.09.24 |
http 접근인지 https 접근인지 구별해주는 전역변수 비교 (0) | 2008.06.25 |
Fatal error: Allowed memory size of 8388608 bytes exhausted (tried to allocate 6720 bytes) in /home/welfare/public_html/ylfw/classes/class.Image.php on line 29 (0) | 2008.06.17 |
PEAR에서 정의한 PHP 표준규약 (0) | 2008.06.12 |
Comments