OpenSQLManager/sys/windows/edit_db.php

40 lines
898 B
PHP
Raw Normal View History

2012-03-28 11:23:08 -04:00
<?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
*/
// --------------------------------------------------------------------------
/**
* Window controlling modifications of database connections
*/
class Edit_DB extends GtkWindow {
2012-03-29 16:26:50 -04:00
/**
* Connection editing window
*
* @param string $db
*/
public function __construct($db)
2012-03-28 11:23:08 -04:00
{
parent::__construct();
$this->set_position(Gtk::WIN_POS_CENTER);
$this->set_title("Edit Database Connection");
// Create the layout table
2012-03-29 16:26:50 -04:00
$connection_form = new DB_Info_Widget(Settings::get_instance()->get_db($db));
2012-03-28 11:23:08 -04:00
// Add the Vbox, and show the window
$this->add($connection_form);
$this->show_all();
}
}
// End of edit_db.php