Dieser Commit ist enthalten in:
Ursprung
2b21070b1a
Commit
f7a7c71f86
1583 geänderte Dateien mit 454759 neuen und 0 gelöschten Zeilen
31
application/modules/sqlbrowser/controllers/IndexController.php
Normale Datei
31
application/modules/sqlbrowser/controllers/IndexController.php
Normale Datei
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
/**
|
||||
* This file is part of MySQLDumper released under the GNU/GPL 2 license
|
||||
* http://www.mysqldumper.net
|
||||
*
|
||||
* @package MySQLDumper
|
||||
* @subpackage Controllers
|
||||
* @version SVN: $Rev$
|
||||
* @author $Author$
|
||||
*/
|
||||
/**
|
||||
* Sql Controller
|
||||
*
|
||||
* Controller to handle actions on SQLBrowser screen
|
||||
*
|
||||
* @package MySQLDumper_Modules
|
||||
* @subpackage SqlBrowser
|
||||
*/
|
||||
class Sqlbrowser_IndexController extends Zend_Controller_Action
|
||||
{
|
||||
|
||||
/**
|
||||
* Index Controller
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function indexAction()
|
||||
{
|
||||
}
|
||||
|
||||
}
|
||||
28
application/modules/sqlbrowser/views/scripts/error/error.phtml
Normale Datei
28
application/modules/sqlbrowser/views/scripts/error/error.phtml
Normale Datei
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<title>MySQLDumper Error Page</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1>An error occurred</h1>
|
||||
<h2><?php echo $this->message ?></h2>
|
||||
|
||||
<?php if (isset($this->exception)): ?>
|
||||
|
||||
<h3>Exception information:</h3>
|
||||
<p>
|
||||
<b>Message:</b> <?php echo $this->exception->getMessage() ?>
|
||||
</p>
|
||||
|
||||
<h3>Stack trace:</h3>
|
||||
<pre><?php echo $this->exception->getTraceAsString() ?>
|
||||
</pre>
|
||||
|
||||
<h3>Request Parameters:</h3>
|
||||
<pre><?php echo var_export($this->request->getParams(), true) ?>
|
||||
</pre>
|
||||
<?php endif ?>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
5
application/modules/sqlbrowser/views/scripts/index/index.phtml
Normale Datei
5
application/modules/sqlbrowser/views/scripts/index/index.phtml
Normale Datei
|
|
@ -0,0 +1,5 @@
|
|||
huhu 2
|
||||
<?php
|
||||
echo $this->byteOutput(265472347);
|
||||
|
||||
?>
|
||||
Laden …
Tabelle hinzufügen
Einen Link hinzufügen
In neuem Issue referenzieren