diff --git a/widgets/styx_clock/conf/info.xml b/widgets/styx_clock/conf/info.xml deleted file mode 100644 index 27d02074b..000000000 --- a/widgets/styx_clock/conf/info.xml +++ /dev/null @@ -1,80 +0,0 @@ - - - 플래시 시계 - 时钟 - フラッシュ時計 - Flash Clock - - 스틱스 - styx - Styx - styx - 플래쉬로 된 시계를 출력합니다. - 显示Flash时钟的控件。 - フラッシュ時計を出力します。 - This widget displays a digital clock made of flash. - - - - 가로길이 - 宽度 - 横幅サイズ - Width - text - 가로길이를 지정하실 수 있습니다. (기본 200px) - 可以设置宽度。 (默认为 200px) - 横幅サイズを指定することができます。(デフォルト200px) - It will be able to set the width. (default is 200px) - - - 테마 - 风格 - テーマ - Theme - select - 흰색/검은색 배경색에 따라 조절하시면 됩니다. - 可以根据设置黑/白背景色来进行调解。 - 白/黒の背景で調節します。 - You may select a theme according to white/black background color. - - 흰색 배경 - 白色 - 白の背景 - White Background - white - - - 검은색 배경 - 黑色 - 黒の背景 - Black Background - black - - - - 일자 표시 - 显示日期 - 年月日表示 - Date Indication - select - 시계내에 일자를 표시하는 기능을 끄거나 켜실 수 있습니다. - 可以开启/关闭时钟内日期的显示。 - 時計内に年月日を表示させる機能がオン・オフできます。 - You can set on or off the function of the date indication in the clock - - 나타냄 - 显示 - 表示 - Show - - - - 숨김 - 关闭 - 隠す - Hide - false - - - - diff --git a/widgets/styx_clock/skins/default/clock.html b/widgets/styx_clock/skins/default/clock.html deleted file mode 100644 index 45fa900ca..000000000 --- a/widgets/styx_clock/skins/default/clock.html +++ /dev/null @@ -1,3 +0,0 @@ - diff --git a/widgets/styx_clock/skins/default/moto/clock.swf b/widgets/styx_clock/skins/default/moto/clock.swf deleted file mode 100644 index 495126eea..000000000 Binary files a/widgets/styx_clock/skins/default/moto/clock.swf and /dev/null differ diff --git a/widgets/styx_clock/skins/default/red/clock.swf b/widgets/styx_clock/skins/default/red/clock.swf deleted file mode 100644 index 0f6d046e1..000000000 Binary files a/widgets/styx_clock/skins/default/red/clock.swf and /dev/null differ diff --git a/widgets/styx_clock/skins/default/skin.xml b/widgets/styx_clock/skins/default/skin.xml deleted file mode 100644 index a7f7ba9ea..000000000 --- a/widgets/styx_clock/skins/default/skin.xml +++ /dev/null @@ -1,37 +0,0 @@ - - - 플래시 시계 - フラッシュ時計 - Flash时钟 - Flash Clock - - styx - Styx - styx - styx - 플래시 시계를 출력합니다. - フラッシュ時計を表示します。 - 显示Flash时钟。 - It displays flash clock. - - - - moto - MOTO - moto - moto - - - vis - VIS - vis - vis - - - red - RED - red - red - - - diff --git a/widgets/styx_clock/skins/default/vis/clock.swf b/widgets/styx_clock/skins/default/vis/clock.swf deleted file mode 100755 index 843bc4846..000000000 Binary files a/widgets/styx_clock/skins/default/vis/clock.swf and /dev/null differ diff --git a/widgets/styx_clock/styx_clock.class.php b/widgets/styx_clock/styx_clock.class.php deleted file mode 100644 index 084df2d84..000000000 --- a/widgets/styx_clock/styx_clock.class.php +++ /dev/null @@ -1,43 +0,0 @@ -widget_path, $args->skin); - $colorset = $args->colorset; - - // 템플릿 파일을 지정 - $tpl_file = 'clock'; - - $theme = $args->theme; - if($theme != "white") $theme = "black"; - - $day = $args->day; - if($day != "false") $day = "true"; - - $clock_width = $args->clock_width; - if(!$clock_width) $clock_width = 200; - $widget_info->clock_width = $clock_width; - $widget_info->src = sprintf("%s%s/%s/clock.swf?theme=%s&day=%s", Context::getRequestUri(), $tpl_path, $colorset, $theme, $day); - - Context::set('widget_info', $widget_info); - - // 템플릿 컴파일 - $oTemplate = &TemplateHandler::getInstance(); - return $oTemplate->compile($tpl_path, $tpl_file); - } - } -?>