OpenSQLManager/src/index.php

36 lines
722 B
PHP

<?php
/**
* OpenSQLManager
*
* Free Database manager for Open Source Databases
*
* @author Timothy J. Warren
* @copyright Copyright (c) 2012
* @link https://github.com/aviat4ion/OpenSQLManager
* @license http://philsturgeon.co.uk/code/dbad-license
*/
if ( ! class_exists('gtk'))
{
die("Please load the php-gtk2 module in your php.ini\r\n");
}
// Wrapper workaround for PHP < 5.4
function do_include($path)
{
require_once($path);
}
$dir = dirname(__FILE__);
// Load modules
{
array_map('do_include', glob("{$dir}/databases/*.php"));
array_map('do_include', glob("{$dir}/windows/*.php"));
}
// Create the main window
$wnd = new Main();
$wnd->show_all();
// Start the GTK event loop
GTK::main();