mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7654 201d5d3c-b55e-5fd7-737f-ddc643e51545
17 lines
502 B
PHP
17 lines
502 B
PHP
<?php
|
|
class analyticsController extends analytics {
|
|
function init(){
|
|
}
|
|
|
|
function triggerBeforeDisplay(&$obj){
|
|
$responseMethod = Context::getResponseMethod();
|
|
|
|
if ($responseMethod != 'HTML')
|
|
return;
|
|
|
|
$script = '<script type="text/javascript" src="http://static.analytics.openapi.naver.com/js/wcslog.js"></script><script type="text/javascript">if(!wcs_add) var wcs_add = {};wcs_add["wa"] = "AccoutId";wcs_do();</script>';
|
|
Context::addHtmlFooter( $script );
|
|
|
|
}
|
|
}
|
|
?>
|