묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
Fatal error: Class 'Context' not found 해결 법 문의 드립니다.
2014.07.11 18:48
Fatal error: Class 'Context' not found 가 떠서 클래스를 못찾는것 같아.
include "../classes/context/Context.class.php" 를 넣었지만 해결이 안되서 문의 드립니다.
외부페이지에 있는 파일을 어떻게 Context Class 를 알아먹게 할 수 있는건가요?
자답 입니다.
<?php
define('__XE__', true);
require_once('../../../config/config.inc.php'); //경로 잘 잡을 것
$oContext = &Context::getInstance();
$oContext->init();
$logged_info = Context::get('logged_info');
if($logged_info)
{
echo "Login";
}
else
{
echo "Logout";
}
?>