git-svn-id: http://xe-core.googlecode.com/svn/trunk@2 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-02-06 15:11:13 +00:00
parent 2569c554ce
commit c040d4d713
317 changed files with 14496 additions and 0 deletions

22
trackback.php Normal file
View file

@ -0,0 +1,22 @@
<?php
/**
* @file : trackback.php
* @author : zero <zero@nzeo.com>
* @desc : 트랙백을 받기 위한 파일. 파일이름때문에.. index.php와 거의 동일하나 act를 procReceiveTrackback로 고정
**/
// 필요한 설정 파일들을 include
require_once("./config/config.inc.php");
// Request Method와 설정값들을 세팅
$oContext = &Context::getInstance();
$oContext->init();
// act값을 procReceiveTrackback로 강제 설정
// 각 모듈마다 procReceiveTrackback가 필수적으로 있어야 함
Context::set('act', 'procReceiveTrackback');
// ModuleHandler 호출하여 content 출력
$oModuleHandler = new ModuleHandler();
$oModule = $oModuleHandler->proc();
?>