MySQL2MySQLi/GUI/convert_snippet.php

57 lines
1.9 KiB
PHP

<?PHP
/**
* GUI: convert a code snippet
*
* @category GUI
* @package MySQLConverterTool
* @author Andrey Hristov <andrey@php.net>, Ulf Wendel <ulf.wendel@phpdoc.de>, Saif Lacrimosa <cool2309@gmail.com>
* @copyright 1997-2006 The PHP Group
* @license http://www.php.net/license/3_0.txt PHP License 3.0
* @version CVS: $Id:$, Release: @package_version@
* @link http://www.mysql.com
* @since Available since Release 1.0
*/
if (isset($_POST['cancel'])) {
// Cancel button
header('Location: index.php');
exit(0);
}
require_once('snippets/MySQLConverterTool_GUI_Snippets.php');
$snippet_title = 'MySQL ext/mysql Converter Tool';
$snippet_greeting = 'Convert a code snippet';
$snippet_nav_path = array($_SERVER['PHP_SELF'] => 'Convert a code snippet');
MySQLConverterTool_GUI_Snippets::load(dirname(__FILE__) . '/snippets/header.php');
if (empty($_POST) || !isset($_POST['start'])) {
// show the form
MySQLConverterTool_GUI_Snippets::load(dirname(__FILE__) . '/snippets/form_snippet.php');
} else {
// process the form
$snippet_errors = array();
if ("" == trim($_POST['snippet'])) {
$snippet_errors['snippet'] = 'Please provide some code to be converted.';
}
if (!empty($snippet_errors)) {
// show the form
MySQLConverterTool_GUI_Snippets::load(dirname(__FILE__) . '/snippets/form_snippet.php');
} else {
// let's try to convert some files...
require_once('../Converter.php');
$conv = new MySQLConverterTool_Converter();
$snippet_conv = $conv->convertString($_POST['snippet']);
$snippet_show_details = true;
MySQLConverterTool_GUI_Snippets::load(dirname(__FILE__) . '/snippets/show_converted_snippet.php');
}
}
MySQLConverterTool_GUI_Snippets::load(dirname(__FILE__) . '/snippets/footer.php');
?>