mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-30 00:29:58 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4750 201d5d3c-b55e-5fd7-737f-ddc643e51545
21 lines
518 B
PHP
21 lines
518 B
PHP
<?php
|
|
if(!defined("__ZBXE__")) exit();
|
|
|
|
/**
|
|
* @file autolink.addon.php
|
|
* @author SOL군 (sol@ngleader.com)
|
|
* @brief
|
|
**/
|
|
|
|
|
|
|
|
if($called_position == 'after_module_proc' && Context::getResponseMethod()!="XMLRPC") {
|
|
$config = Context::get('config');
|
|
if($config->mid == 'planet'){
|
|
$oPlanet = Context::get('planet');
|
|
if($oPlanet->isMyPlanet()){
|
|
Context::addJsFile('./addons/planet_tab/planet_todo.js');
|
|
}
|
|
}
|
|
}
|
|
?>
|