mirror of
https://github.com/cytopia/devilbox.git
synced 2024-12-27 08:12:28 +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'
|
||
|
);
|
||
|
?>
|