mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-26 16:01:05 +00:00
17 lines
231 B
PHP
17 lines
231 B
PHP
<?php
|
|
/**
|
|
* Available Themes for phpPgAdmin
|
|
*
|
|
* $Id:
|
|
*/
|
|
|
|
// List of themes
|
|
|
|
$appThemes = array(
|
|
'default' => 'Default',
|
|
'cappuccino' => 'Cappuccino',
|
|
'gotar' => 'Blue/Green',
|
|
'bootstrap' => 'Bootstrap3'
|
|
);
|
|
?>
|