[CodeIgniter] _rmap을 이용한 화면 상단, 하단 레이어 고정
class Welcome extends CI_Controller {
/** * @brief 기본 Wellcome to CodeIgniter! 페이지 지정 */ public function index() { $this->load->view("welcome_message"); }
/** * @brief 사이트 헤더, 푸터가 자동으로 추가 */ public function _remap($method) {
// brief 헤더 load $this->load->view("layer/headder_view");
if(method_exists($this, $method)) { $this->{"{$method}"}(); }
// @brief 푸터 load $this->load->view("layer/footer_view"); } }
from http://magic.wickedmiso.com/219 by ccl(A) rewrite - 2020-03-11 02:20:33
댓글
댓글 쓰기