Merge branch 'QA_3_4'
[phpmyadmin.git] / themes.php
blob166333466c5b3f64577f2f27c566d0d7c7f9b55a
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
5 * @package phpMyAdmin
6 */
8 /**
9 * get some globals
11 require './libraries/common.inc.php';
13 /* Theme Select */
14 $path_to_themes = $cfg['ThemePath'] . '/';
16 /* set language and charset */
17 require './libraries/header_http.inc.php';
19 /* HTML header */
20 $page_title = 'phpMyAdmin - ' . __('Theme');
21 require './libraries/header_meta_style.inc.php';
22 require './libraries/header_scripts.inc.php';
24 </head>
26 <body id="bodythemes">
27 <h1>phpMyAdmin - <?php echo __('Theme'); ?></h1>
28 <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>
29 <?php
30 $_SESSION['PMA_Theme_Manager']->printPreviews();
32 </body>
33 </html>