Update look and feel with bootstrap

This commit is contained in:
2011-12-31 19:19:02 +00:00
parent b9f535777b
commit fcd7be1414
17 changed files with 1132 additions and 131 deletions

16
public/_inc.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
if (isset($_SERVER['MEDIALISTING_CONFIG']) &&
file_exists($_SERVER['MEDIALISTING_CONFIG']) &&
is_readable($_SERVER['MEDIALISTING_CONFIG'])) {
require_once($_SERVER['MEDIALISTING_CONFIG']);
} else {
require_once '/etc/media-list/config.php';
}
require_once SihnonFramework_Lib . 'SihnonFramework/Main.class.php';
SihnonFramework_Main::registerAutoloadClasses('SihnonFramework', SihnonFramework_Lib,
'MediaListing', MediaListing_Lib);
?>