mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-21 20:29:57 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6162 201d5d3c-b55e-5fd7-737f-ddc643e51545
18 lines
490 B
PHP
18 lines
490 B
PHP
<?PHP
|
|
if(!defined("__ZBXE__")) exit();
|
|
|
|
if(Context::get('module')=='admin') return;
|
|
|
|
if($called_position != 'before_module_proc' && $called_position != 'after_module_proc' ) return;
|
|
|
|
require_once(_XE_PATH_.'addons/iphone/classes/iphone.class.php');
|
|
if(!iphoneXE::isFromIPhone())
|
|
{
|
|
return;
|
|
}
|
|
|
|
$iphoneXE = &iphoneXE::getInstance();
|
|
$iphoneXE->setModuleInfo($this->module_info);
|
|
$iphoneXE->setModuleInstance($this);
|
|
$iphoneXE->display();
|
|
?>
|