diff options
author | VirtualTam <virtualtam@flibidi.net> | 2018-12-03 00:46:04 +0100 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2019-01-12 22:47:48 +0100 |
commit | 8c0f19c7971e1a4534347ce9d6d82a0a45799711 (patch) | |
tree | 51cc8c616b9614bf81c011161908319634a82b47 /application/ThemeUtils.php | |
parent | 51753e403fa69c0ce124ede27d300477e3e799ca (diff) | |
download | Shaarli-8c0f19c7971e1a4534347ce9d6d82a0a45799711.tar.gz Shaarli-8c0f19c7971e1a4534347ce9d6d82a0a45799711.tar.zst Shaarli-8c0f19c7971e1a4534347ce9d6d82a0a45799711.zip |
namespacing: \Shaarli\Render\{PageBuilder,ThemeUtils}
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'application/ThemeUtils.php')
-rw-r--r-- | application/ThemeUtils.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/application/ThemeUtils.php b/application/ThemeUtils.php deleted file mode 100644 index 16f2f6a2..00000000 --- a/application/ThemeUtils.php +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | <?php | ||
2 | |||
3 | namespace Shaarli; | ||
4 | |||
5 | /** | ||
6 | * Class ThemeUtils | ||
7 | * | ||
8 | * Utility functions related to theme management. | ||
9 | * | ||
10 | * @package Shaarli | ||
11 | */ | ||
12 | class ThemeUtils | ||
13 | { | ||
14 | /** | ||
15 | * Get a list of available themes. | ||
16 | * | ||
17 | * It will return the name of any directory present in the template folder. | ||
18 | * | ||
19 | * @param string $tplDir Templates main directory. | ||
20 | * | ||
21 | * @return array List of theme names. | ||
22 | */ | ||
23 | public static function getThemes($tplDir) | ||
24 | { | ||
25 | $tplDir = rtrim($tplDir, '/'); | ||
26 | $allTheme = glob($tplDir.'/*', GLOB_ONLYDIR); | ||
27 | $themes = []; | ||
28 | foreach ($allTheme as $value) { | ||
29 | $themes[] = str_replace($tplDir.'/', '', $value); | ||
30 | } | ||
31 | |||
32 | return $themes; | ||
33 | } | ||
34 | } | ||