mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-08 19:21:40 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@7654 201d5d3c-b55e-5fd7-737f-ddc643e51545
18 lines
423 B
PHP
18 lines
423 B
PHP
<?php
|
|
|
|
class analyticsAdminController extends analytics {
|
|
|
|
function init(){
|
|
}
|
|
|
|
function procAnalyticsAdminInsertAPIKey() {
|
|
// API KEY 값을 가지고 온다.
|
|
$args = Context::gets('api_key');
|
|
|
|
// module controlle 객체 생성하여 Key값 저장
|
|
$oModuleController = &getController('module');
|
|
$output = $oModuleController->insertModuleConfig('analytics', $args);
|
|
return $output;
|
|
}
|
|
}
|
|
?>
|