Closing tags at the end of file are not mandatory. It is often suggested to omit to closing tags at the end of file to prevent unwanted effects as PHP will start output buffering if there is any character after closing tag. Reference: http://php.net/manual/en/language.basic-syntax.phptags.php Signed-off-by: Rahul Kadyan <hi@znck.me>
28 lines
694 B
PHP
28 lines
694 B
PHP
<?php
|
|
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
|
/**
|
|
* object the server export page
|
|
*
|
|
* @package PhpMyAdmin
|
|
*/
|
|
|
|
/**
|
|
* Does the common work
|
|
*/
|
|
require_once 'libraries/common.inc.php';
|
|
require_once 'libraries/server_common.inc.php';
|
|
require_once 'libraries/display_export.lib.php';
|
|
|
|
$response = PMA_Response::getInstance();
|
|
$header = $response->getHeader();
|
|
$scripts = $header->getScripts();
|
|
$scripts->addFile('export.js');
|
|
|
|
$export_page_title = __('View dump (schema) of databases') . "\n";
|
|
|
|
$select_item = isset($tmp_select)? $tmp_select : '';
|
|
$multi_values = PMA_getHtmlForExportSelectOptions($select_item);
|
|
|
|
$export_type = 'server';
|
|
require_once 'libraries/display_export.inc.php';
|