mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-02 01:52:10 +09:00
Add krzip module
This commit is contained in:
parent
1a8b5c8b29
commit
7bef97f170
26 changed files with 1611 additions and 0 deletions
49
modules/krzip/krzip.class.php
Normal file
49
modules/krzip/krzip.class.php
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
<?php
|
||||
/* Copyright (C) NAVER <http://www.navercorp.com> */
|
||||
/**
|
||||
* @class krzip
|
||||
* @author NAVER (developers@xpressengine.com)
|
||||
* @brief Krzip module high class.
|
||||
*/
|
||||
|
||||
if(!function_exists('lcfirst'))
|
||||
{
|
||||
function lcfirst($text)
|
||||
{
|
||||
return strtolower(substr($text, 0, 1)) . substr($text, 1);
|
||||
}
|
||||
}
|
||||
|
||||
class krzip extends ModuleObject
|
||||
{
|
||||
public static $sequence_id = 0;
|
||||
|
||||
public static $default_config = array('api_handler' => 0);
|
||||
|
||||
public static $api_list = array('daumapi', 'epostapi', 'postcodify');
|
||||
|
||||
public static $epostapi_host = 'http://biz.epost.go.kr/KpostPortal/openapi';
|
||||
|
||||
function moduleInstall()
|
||||
{
|
||||
return new Object();
|
||||
}
|
||||
|
||||
function moduleUninstall()
|
||||
{
|
||||
return new Object();
|
||||
}
|
||||
|
||||
function checkUpdate()
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
function moduleUpdate()
|
||||
{
|
||||
return new Object();
|
||||
}
|
||||
}
|
||||
|
||||
/* End of file krzip.class.php */
|
||||
/* Location: ./modules/krzip/krzip.class.php */
|
||||
Loading…
Add table
Add a link
Reference in a new issue