From f8b479a748a37ad21c5f7aa549ad75f4a95f3573 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 17 Jun 2004 00:49:31 +0000 Subject: files moved into themes/original --- themes.php | 119 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) create mode 100644 themes.php (limited to 'themes.php') diff --git a/themes.php b/themes.php new file mode 100644 index 0000000000..bff98aab8c --- /dev/null +++ b/themes.php @@ -0,0 +1,119 @@ +"; +?> + + + + phpMyAdmin - <?php echo ($strTheme ? $strTheme : 'Theme / Style'); ?> + + + + + + + + + + + + + + + + + } // end original theme screen + */ + if ($handleThemes = opendir($path_to_themes)) { // open themes + while (false !== ($PMA_Theme = readdir($handleThemes))) { // get screens + if ($PMA_Theme != "." && $PMA_Theme != "..") { // && !strstr($PMA_Theme,'original')) { // but not the original + $screen_directory = $path_to_themes . $PMA_Theme; + if (is_dir($screen_directory) && @file_exists($screen_directory.'/screen.png')) { // if screen exists then output +?> + + + + + + + +
phpMyAdmin -
 
+ ORIGINAL

'; + echo '
Original - Theme'; + echo '

'; + ?> +

+ ' . strtoupper(preg_replace("/_/"," ",$PMA_Theme)) . '

'; + echo '
' . strtoupper(preg_replace('; + echo '

'; + ?> +
+
+ + -- cgit v1.2.3