forked from xe-public/xe-module-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmaps.class.php
More file actions
95 lines (89 loc) · 1.62 KB
/
maps.class.php
File metadata and controls
95 lines (89 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<?php
/* Copyright (C) Kim, MinSoo <misol.kr@gmail.com> */
/**
* @file maps.class.php
* @author MinSoo Kim (misol.kr@gmail.com)
* @brief the highest class of the maps module
* @todo 상세 작업을 추가해서 마무리(?) 해야한다.
*/
class maps extends ModuleObject
{
/**
* @param array $xe_langtype XE 언어 타입 모음(소문자)
*/
protected $xe_langtype = array(
'ko',
'en',
'zh-tw',
'zh-cn',
'jp',
'es',
'fr',
'ru',
'vi',
'mn',
'tr'
);
/**
* @param array $google_langtype Google 언어 타입 모음
*/
protected $google_langtype = array(
'ko',
'en',
'zh-Hant',
'zh-Hans',
'ja',
'es',
'fr',
'ru',
'vi',
'en', // google does not not support
'tr'
);
/**
* @param array $microsoft_langtype Microsoft 언어 타입 모음 http://msdn.microsoft.com/en-us/library/gg427600.aspx
*/
protected $microsoft_langtype = array(
'ko-KR',
'en-US',
'zh-TW',
'zh-HK',
'ja-JP',
'es-ES',
'fr-FR',
'ru-RU',
'en-US', // MS does not not support
'en-US', // MS does not not support
'en-US' // MS does not not support
);
/**
* Implement if additional tasks are necessary when installing
* @return Object
*/
public function moduleInstall()
{
}
/**
* A method to check if successfully installed
* @return bool
*/
public function checkUpdate()
{
}
/**
* Execute update
* @return Object
*/
public function moduleUpdate()
{
}
/**
* Re-generate the cache file
* @return void
*/
public function recompileCache()
{
}
}
/* End of file maps.class.php */
/* Location: ./modules/maps/maps.class.php */