컨트롤러에서 간단한 layout설정
- 혀니혀니
- 0
- 3,437
- 글주소
- 03-04
- Download
- controllerPlus.zip(6.4 KB) 2021-03-0414
기존 CIboard에서 layconfing를 이용한 구성이 약간 복잡해서 간단하게 컨트롤러에서 사용 할 수 있게 개조를 해보았습니다.
제가 편하자고 만든거라 오류가 있을수 있습니다. admin은 아직 지원되지 않습니다.
감사합니다.
사용방법
1. core/CB_Controller.php[line4] : include APPPATH.'/trait/ControllerPlus.php';
2. core/CB_Controller.php[line15] : use ControllerPlus;
3. view 구성
views/test/basic/index.php 생성
4. controller 구성
application/controllers/test.php 생성
public function index()
{
$args = array(
"name" => "misty",
"age" => 23
);
$this->loadview("test/index", $args);
}