47 lines
1.3 KiB
PHP
47 lines
1.3 KiB
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
*
|
|
* @package phpMyAdmin
|
|
*/
|
|
|
|
/**
|
|
* get some globals
|
|
*/
|
|
require './libraries/common.inc.php';
|
|
|
|
/* Theme Select */
|
|
$path_to_themes = $cfg['ThemePath'] . '/';
|
|
|
|
/* set language and charset */
|
|
require './libraries/header_http.inc.php';
|
|
|
|
/* HTML header */
|
|
$page_title = 'phpMyAdmin - ' . __('Theme / Style');
|
|
require './libraries/header_meta_style.inc.php';
|
|
?>
|
|
<script type="text/javascript" language="javascript">
|
|
// <![CDATA[
|
|
function takeThis(what){
|
|
if (window.opener && window.opener.document.forms['setTheme'].elements['set_theme']) {
|
|
window.opener.document.forms['setTheme'].elements['set_theme'].value = what;
|
|
window.opener.document.forms['setTheme'].submit();
|
|
self.close();
|
|
} else {
|
|
alert('<?php echo sprintf(__('No themes support; please check your configuration and/or your themes in directory %s.'), $cfg['ThemePath']); ?>');
|
|
self.close();
|
|
}
|
|
}
|
|
// ]]>
|
|
</script>
|
|
</head>
|
|
|
|
<body id="bodythemes">
|
|
<h1>phpMyAdmin - <?php echo __('Theme / Style'); ?></h1>
|
|
<p><a href="<?php echo PMA_linkURL('http://www.phpmyadmin.net/home_page/themes.php'); ?>#pma_<?php echo preg_replace('/([0-9]*)\.([0-9]*)\..*/', '\1_\2', PMA_VERSION); ?>"><?php echo __('Get more themes!'); ?></a></p>
|
|
<?php
|
|
$_SESSION['PMA_Theme_Manager']->printPreviews();
|
|
?>
|
|
</body>
|
|
</html>
|