rename Phorkie to phorkie (lowercase)
[phorkie.git] / src / Phorkie / HtmlHelper.php
diff --git a/src/Phorkie/HtmlHelper.php b/src/Phorkie/HtmlHelper.php
deleted file mode 100644 (file)
index f20add3..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-namespace Phorkie;
-
-class HtmlHelper
-{
-    public function getLanguageOptions(File $file = null)
-    {
-        $html = '';
-        $fileExt = null;
-        if ($file !== null) {
-            $fileExt = $file->getExt();
-        }
-        foreach ($GLOBALS['phorkie']['languages'] as $ext => $arLang) {
-            if (isset($arLang['show']) && !$arLang['show']) {
-                continue;
-            }
-            $html .= sprintf(
-                '<option value="%s"%s>%s</option>',
-                $ext,
-                $fileExt == $ext ? ' selected="selected"' : '',
-                $arLang['title']
-            ) . "\n";
-        }
-        return $html;
-    }
-}
-
-?>
\ No newline at end of file