summaryrefslogtreecommitdiff
path: root/hugo/themes.php
diff options
context:
space:
mode:
Diffstat (limited to 'hugo/themes.php')
-rw-r--r--hugo/themes.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/hugo/themes.php b/hugo/themes.php
new file mode 100644
index 0000000..4328383
--- /dev/null
+++ b/hugo/themes.php
@@ -0,0 +1,31 @@
+<?php
+/* vim: set expandtab sw=4 ts=4 sts=4: */
+/**
+ *
+ * @package PhpMyAdmin
+ */
+
+/**
+ * get some globals
+ */
+require './libraries/common.inc.php';
+$response = PMA_Response::getInstance();
+$response->getFooter()->setMinimal();
+$header = $response->getHeader();
+$header->setBodyId('bodythemes');
+$header->setTitle('phpMyAdmin - ' . __('Theme'));
+$header->disableMenu();
+
+$hash = '#pma_' . preg_replace('/([0-9]*)\.([0-9]*)\..*/', '\1_\2', PMA_VERSION);
+$url = PMA_linkURL('http://www.phpmyadmin.net/home_page/themes.php') . $hash;
+$output = '<h1>phpMyAdmin - ' . __('Theme') . '</h1>';
+$output .= '<p>';
+$output .= '<a href="' . $url . '" class="_blank">';
+$output .= __('Get more themes!');
+$output .= '</a>';
+$output .= '</p>';
+$output .= $_SESSION['PMA_Theme_Manager']->getPrintPreviews();
+
+$response->addHTML($output);
+
+?>