]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/ThemeUtils.php
namespacing: \Shaarli\Render\{PageBuilder,ThemeUtils}
[github/shaarli/Shaarli.git] / application / ThemeUtils.php
diff --git a/application/ThemeUtils.php b/application/ThemeUtils.php
deleted file mode 100644 (file)
index 16f2f6a..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-
-namespace Shaarli;
-
-/**
- * Class ThemeUtils
- *
- * Utility functions related to theme management.
- *
- * @package Shaarli
- */
-class ThemeUtils
-{
-    /**
-     * Get a list of available themes.
-     *
-     * It will return the name of any directory present in the template folder.
-     *
-     * @param string $tplDir Templates main directory.
-     *
-     * @return array List of theme names.
-     */
-    public static function getThemes($tplDir)
-    {
-        $tplDir = rtrim($tplDir, '/');
-        $allTheme = glob($tplDir.'/*', GLOB_ONLYDIR);
-        $themes = [];
-        foreach ($allTheme as $value) {
-            $themes[] = str_replace($tplDir.'/', '', $value);
-        }
-
-        return $themes;
-    }
-}