diff options
author | Gitea <gitea@fake.local> | 2021-11-10 17:53:50 +0100 |
---|---|---|
committer | Gitea <gitea@fake.local> | 2021-11-10 17:53:50 +0100 |
commit | 8fabf77b2a7720a357c63817c07035a9908818a0 (patch) | |
tree | d689fcac1403e2473010fe80bc337599a78c21a4 /Neutron-trunk/api/admin/cache_pages_update.php | |
parent | 7b4af63a90a726b98a59b83e53f040a7a566a11d (diff) | |
download | electrode-8fabf77b2a7720a357c63817c07035a9908818a0.tar.gz electrode-8fabf77b2a7720a357c63817c07035a9908818a0.tar.bz2 electrode-8fabf77b2a7720a357c63817c07035a9908818a0.zip |
Update
Diffstat (limited to 'Neutron-trunk/api/admin/cache_pages_update.php')
-rw-r--r-- | Neutron-trunk/api/admin/cache_pages_update.php | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/Neutron-trunk/api/admin/cache_pages_update.php b/Neutron-trunk/api/admin/cache_pages_update.php deleted file mode 100644 index 3122731..0000000 --- a/Neutron-trunk/api/admin/cache_pages_update.php +++ /dev/null @@ -1,72 +0,0 @@ -<?php - -require_once $_SERVER['DOCUMENT_ROOT'] . "/api/lang/processor.php"; - -$customSettings = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/customSettings.json")); -global $cache; -$cache = ""; - -function append(string $text) { - global $cache; - $cache = $cache . $text; -} - -function compareASCII($a, $b) { - $at = iconv('UTF-8', 'ASCII//TRANSLIT', $a); - $bt = iconv('UTF-8', 'ASCII//TRANSLIT', $b); - return strcmp($at, $bt); -} - -$pages = scandir($_SERVER['DOCUMENT_ROOT']); -uasort($pages, 'compareASCII'); -$index = 0; -if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/galery/enabled")) {$index = 1;} -append("@home|@indexHomeIcon"); -foreach ($pages as $page) { - if ((($page != ".." && $page != ".") && $index < 6) && (is_dir($_SERVER['DOCUMENT_ROOT'] . "/" . $page)) && (file_exists($_SERVER['DOCUMENT_ROOT'] . "/" . $page . "/pagename")) && (!in_array($page, $customSettings->hiddenPages))) { - append("\n{$page}|" . file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/" . $page . "/pagename")); - $index++; - } -} -if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/galery/enabled")) { - append("\n@galery|" . $lang["viewer"]["galery"]); -} - -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/cache/pagelist.mtd", $cache); - -$cache = ""; -$index = 0; -if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/galery/enabled")) {$index = 1;} -append("@home|@indexHomeIcon"); -foreach ($pages as $page) { - if ((($page != ".." && $page != ".")) && (is_dir($_SERVER['DOCUMENT_ROOT'] . "/" . $page)) && (file_exists($_SERVER['DOCUMENT_ROOT'] . "/" . $page . "/pagename")) && (!in_array($page, $customSettings->hiddenPages))) { - append("\n{$page}|" . file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/" . $page . "/pagename")); - $index++; - } -} -if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/galery/enabled")) { - append("\n@galery|" . $lang["viewer"]["galery"]); -} - -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/cache/pagelist-full.mtd", $cache); - -/* --------------------------- */ -// Backwards compatibility with the old engine-cyclic -$cache = ""; - -$pages = scandir($_SERVER['DOCUMENT_ROOT']); -uasort($pages, 'compareASCII'); -foreach ($pages as $page) { - if ($page != ".." && $page != ".") { - if (is_dir($_SERVER['DOCUMENT_ROOT'] . "/" . $page)) { - if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/" . $page . "/pagename")) { - if (!in_array($page, $customSettings->hiddenPages)) { - append("<a href=\"/{$page}\" title=\"/{$page}\" class=\"menulink-desktop\">" . file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/" . $page . "/pagename") . "</a>"); - } - } - } - } -} -if (file_exists($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/galery/enabled")) {append("<a href=\"/cms-special/gallery\" title=\"/cms-special/gallery\" class=\"menulink-desktop\">" . $lang["viewer"]["galery"] . "</a>");} - -file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/data/webcontent/cache/pagelist-old.mtd", $cache);
\ No newline at end of file |