mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 18:51:41 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@3107 201d5d3c-b55e-5fd7-737f-ddc643e51545
15 lines
458 B
PHP
15 lines
458 B
PHP
<?php
|
|
if(!defined("__ZBXE__")) exit();
|
|
|
|
/**
|
|
* @file referer.addon.php
|
|
* @author haneul (haneul0318@gmail.com)
|
|
**/
|
|
|
|
// called_position가 before_module_init 이고 module이 admin이 아닐 경우
|
|
if($called_position == 'before_module_init' && !$GLOBALS['__referer_addon_called__']) {
|
|
$oController = &getController('referer');
|
|
$oController->procRefererExecute();
|
|
$GLOBALS['__referer_addon_called__'] = true;
|
|
}
|
|
?>
|