Use subpackages for export formats
This commit is contained in:
parent
4bbdebe22e
commit
76d4046858
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build NHibernate dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-Codegen
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage Codegen
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
@ -148,7 +149,8 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
|
||||
|
||||
/**
|
||||
*
|
||||
* @package phpMyAdmin-Export-Codegen
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage Codegen
|
||||
*/
|
||||
class TableProperty
|
||||
{
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* CSV export code
|
||||
*
|
||||
* @package phpMyAdmin-Export-CSV
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage CSV
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build CSV dumps of tables for excel
|
||||
*
|
||||
* @package phpMyAdmin-Export-CSV-Excel
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage CSV-Excel
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build HTML dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-HTMLWord
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage HTMLWord
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build dumps of tables as JSON
|
||||
*
|
||||
* @package phpMyAdmin-Export-JSON
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage JSON
|
||||
*/
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build LaTeX dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-Latex
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage Latex
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build MediaWiki dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-MediaWiki
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage MediaWiki
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build OpenDocument Spreadsheet dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-ODS
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage ODS
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build OpenDocument Text dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-ODT
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage ODT
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Produce a PDF report (export) from a query
|
||||
*
|
||||
* @package phpMyAdmin-Export-PDF
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage PDF
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
@ -39,7 +40,8 @@ require_once './libraries/tcpdf/tcpdf.php';
|
||||
|
||||
/**
|
||||
* Adapted from a LGPL script by Philip Clarke
|
||||
* @package phpMyAdmin-Export-PDF
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage PDF
|
||||
*/
|
||||
class PMA_PDF extends TCPDF
|
||||
{
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build dumps of tables as PHP Arrays
|
||||
*
|
||||
* @package phpMyAdmin-Export-PHP
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage PHP
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build SQL dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-SQL
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage SQL
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Export to Texy! text.
|
||||
*
|
||||
* @package phpMyAdmin-Export-Texy
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage Texy
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build dumps of tables as Excel files.
|
||||
*
|
||||
* @package phpMyAdmin-Export-XLS
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage XLS
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build dumps of tables as Excel 2007 files.
|
||||
*
|
||||
* @package phpMyAdmin-Export-XLSX
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage XLSX
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build XML dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-XML
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage XML
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
@ -3,7 +3,8 @@
|
||||
/**
|
||||
* Set of functions used to build YAML dumps of tables
|
||||
*
|
||||
* @package phpMyAdmin-Export-YAML
|
||||
* @package phpMyAdmin-Export
|
||||
* @subpackage YAML
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user