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
- Linux
- 명령어
- AIR
- exception
- APM
- xampp
- VirtualBox
- php
- CentOS
- Network
- VMware
- tw_cli
- 라라벨
- ubuntu
- vsftpd
- nateon
- ftp
- MySQL
- Fedora
- php5
- GlusterFS
- Trac
- BIND
- MOUNT
- httpd.conf
- Laravel
- Subversion
- JavaScript
- redmine
- fstab
Archives
- Today
- Total
어제와 똑같이 살면서 다른 미래를 기대하지 말자
layout 렌더링 경로지정 본문
/application
abstract class Angelos_Controller_Owner extends Angelos_Controller_Action
{
public function init()
{
parent::init();
// layout 기본경로 지정
/modules
/views
/views
/layouts
/owner
layout.tpl
abstract class Angelos_Controller_Owner extends Angelos_Controller_Action
{
public function init()
{
parent::init();
// layout 기본경로 지정
Zend_Layout::startMvc(array('layoutPath' => '../application/views/layouts'));
// layout 확장자 변경
$this->_helper->layout->setViewSuffix('tpl');
// layout 지정(owner/layout.tpl)
$this->_helper->layout->setLayout('owner/layout');
// 기타.. (headScript 지정)
$this->view->headScript()->appendFile('/Library/Js/prototype.js')
->appendFile('/Library/Js/scriptaculous.js');
}
}
// layout 확장자 변경
$this->_helper->layout->setViewSuffix('tpl');
// layout 지정(owner/layout.tpl)
$this->_helper->layout->setLayout('owner/layout');
// 기타.. (headScript 지정)
$this->view->headScript()->appendFile('/Library/Js/prototype.js')
->appendFile('/Library/Js/scriptaculous.js');
}
}
'IT관심분야 > PHP' 카테고리의 다른 글
[PHP]FILES array가 20개로 제한되는 경우.. (0) | 2010.11.16 |
---|---|
[PHP] 소스가 그대로 노출되는 현상 (short_open_tag = On) (1) | 2010.11.12 |
view 렌더링 기본디렉토리 구조변경 (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 |
Comments