Fix merge conflicts
Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
commit
ab7942be89
@ -3,12 +3,7 @@
|
||||
<!-- http://pear.php.net/manual/en/package.php.php-codesniffer.annotated-ruleset.php -->
|
||||
<description>phpMyAdmin custom coding standard</description>
|
||||
|
||||
<rule ref="PEAR">
|
||||
<exclude name="PEAR.Commenting.FileComment" />
|
||||
<exclude name="PEAR.Commenting.ClassComment" />
|
||||
<exclude name="PEAR.Commenting.FunctionComment" />
|
||||
<exclude name="Generic.Commenting.DocComment" />
|
||||
</rule>
|
||||
<rule ref="PSR1" />
|
||||
<rule ref="Generic.Metrics.NestingLevel" />
|
||||
<!-- There MUST NOT be trailing whitespace at the end of lines. -->
|
||||
<rule ref="Squiz.WhiteSpace.SuperfluousWhitespace" />
|
||||
|
||||
@ -7,10 +7,6 @@
|
||||
*/
|
||||
namespace PMA\libraries;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Class to handle database QBE search
|
||||
*
|
||||
|
||||
@ -5,9 +5,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Formats interval like 10 per hour
|
||||
|
||||
@ -1,7 +1,6 @@
|
||||
<?php
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* Run autoloader
|
||||
* Load class autoloader
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
@ -6,10 +6,6 @@
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines the bookmark parameters for the current user
|
||||
*
|
||||
|
||||
@ -5,9 +5,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Function to get html for one relational key
|
||||
|
||||
@ -8,10 +8,6 @@
|
||||
use PMA\libraries\Message;
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines the central_columns parameters for the current user
|
||||
*
|
||||
|
||||
@ -5,9 +5,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes all variables from request except whitelisted ones.
|
||||
|
||||
@ -533,7 +533,7 @@ if (PMA_isValid($_REQUEST['sql_query'])) {
|
||||
/**
|
||||
* lang detection is done here
|
||||
*/
|
||||
require './libraries/select_lang.lib.php';
|
||||
require './libraries/select_lang.inc.php';
|
||||
|
||||
// Defines the cell alignment values depending on text direction
|
||||
if ($GLOBALS['text_dir'] == 'ltr') {
|
||||
|
||||
@ -5,13 +5,8 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
use PMA\libraries\Table;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Transforms the radio button field_key into 4 arrays
|
||||
*
|
||||
|
||||
@ -6,6 +6,7 @@
|
||||
*
|
||||
* @package PhpMyAdmin-DBI
|
||||
*/
|
||||
use PMA\libraries\dbi\DBIDummy;
|
||||
use PMA\libraries\di\Container;
|
||||
use PMA\libraries\DatabaseInterface;
|
||||
use PMA\libraries\dbi\DBIMysql;
|
||||
@ -19,7 +20,6 @@ if (defined('TESTSUITE')) {
|
||||
/**
|
||||
* For testsuite we use dummy driver which can fake some queries.
|
||||
*/
|
||||
include_once './libraries/dbi/DBIDummy.php';
|
||||
$extension = new DBIDummy();
|
||||
} else {
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -7,10 +7,6 @@
|
||||
*/
|
||||
use PMA\libraries\Message;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get HTML for the Change password dialog
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ use PMA\libraries\Message;
|
||||
use PMA\libraries\plugins\ExportPlugin;
|
||||
use PMA\libraries\Table;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Outputs appropriate checked statement for checkbox.
|
||||
*
|
||||
|
||||
@ -5,9 +5,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prints details about the current Git commit revision
|
||||
|
||||
@ -8,14 +8,9 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
use PMA\libraries\Message;
|
||||
use PMA\libraries\plugins\ImportPlugin;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Prints Html For Display Import Hidden Input
|
||||
*
|
||||
|
||||
@ -5,9 +5,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Compares the names of two languages.
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
|
||||
|
||||
use PMA\libraries\StorageEngine;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The BDB storage engine
|
||||
*
|
||||
|
||||
@ -7,10 +7,6 @@
|
||||
*/
|
||||
namespace PMA\libraries\engines;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* This is same as BDB
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
|
||||
|
||||
use PMA\libraries\StorageEngine;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The binary log storage engine
|
||||
*
|
||||
|
||||
@ -7,10 +7,6 @@
|
||||
*/
|
||||
namespace PMA\libraries\engines;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Innobase storage engine
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\engines;
|
||||
use PMA\libraries\StorageEngine;
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The InnoDB storage engine
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
|
||||
|
||||
use PMA\libraries\StorageEngine;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The MEMORY (HEAP) storage engine
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
|
||||
|
||||
use PMA\libraries\StorageEngine;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The MERGE storage engine
|
||||
*
|
||||
|
||||
@ -7,10 +7,6 @@
|
||||
*/
|
||||
namespace PMA\libraries\engines;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The MERGE storage engine
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
|
||||
|
||||
use PMA\libraries\StorageEngine;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The MyISAM storage engine
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
|
||||
|
||||
use PMA\libraries\StorageEngine;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The NDBCLUSTER storage engine
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\engines;
|
||||
use PMA;
|
||||
use PMA\libraries\StorageEngine;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The PBXT storage engine
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
|
||||
|
||||
use PMA\libraries\StorageEngine;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The performance schema storage engine
|
||||
*
|
||||
|
||||
@ -6,16 +6,11 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
use PMA\libraries\Message;
|
||||
use PMA\libraries\plugins\ExportPlugin;
|
||||
use PMA\libraries\Table;
|
||||
use PMA\libraries\ZipFile;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets a session variable upon a possible fatal error during export
|
||||
*
|
||||
|
||||
@ -5,9 +5,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns array of filtered file names
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
|
||||
use PMA;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Factory class that handles the creation of geometric objects.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Base class for all GIS data type classes.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles actions related to GIS GEOMETRYCOLLECTION objects
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles actions related to GIS LINESTRING objects
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles actions related to GIS MULTILINESTRING objects
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles actions related to GIS MULTIPOINT objects
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles actions related to GIS MULTIPOLYGON objects
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles actions related to GIS POINT objects
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
|
||||
use PMA\libraries\Util;
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles actions related to GIS POLYGON objects
|
||||
*
|
||||
|
||||
@ -11,10 +11,6 @@ namespace PMA\libraries\gis;
|
||||
use PMA\libraries\Util;
|
||||
use \TCPDF;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
require_once 'libraries/sql.lib.php';
|
||||
|
||||
/**
|
||||
|
||||
@ -1,14 +1,10 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* set of functions for structure section in pma
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get HTML for display indexes
|
||||
|
||||
@ -5,14 +5,9 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
use PMA\libraries\Message;
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve form parameters for insert/edit form
|
||||
*
|
||||
|
||||
@ -6,9 +6,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the "true" IP address of the current user
|
||||
|
||||
@ -6,9 +6,6 @@
|
||||
* @package PhpMyAdmin
|
||||
*
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Format a string so it can be a string inside JavaScript code inside an
|
||||
|
||||
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Logs user information to webserver logs.
|
||||
|
||||
@ -6,9 +6,6 @@
|
||||
* @package PhpMyAdmin
|
||||
* @todo Maybe we could try to use fileinfo module if loaded
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Tries to detect MIME type of content.
|
||||
|
||||
@ -7,9 +7,6 @@
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets url params
|
||||
|
||||
@ -7,10 +7,6 @@
|
||||
*/
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Generate charset dropdown box
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\navigation\nodes;
|
||||
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* The Node is the building block for the collapsible navigation tree
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\navigation\nodes;
|
||||
|
||||
use PMA;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents a columns node in the navigation tree
|
||||
*
|
||||
|
||||
@ -11,10 +11,6 @@ use PMA;
|
||||
use PMA\libraries\navigation\NodeFactory;
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents a container for column nodes in the navigation tree
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\navigation\nodes;
|
||||
|
||||
use PMA;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Represents a event node in the navigation tree
|
||||
*
|
||||
|
||||
@ -1,19 +1,13 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* set of functions used for normalization
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
use PMA\libraries\Message;
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* build the html for columns of $colTypeCategory category
|
||||
* in form of given $listType in a table
|
||||
|
||||
@ -1,12 +1,10 @@
|
||||
<?php
|
||||
|
||||
/* vim: set expandtab sw=4 ts=4 sts=4: */
|
||||
/**
|
||||
* set of functions with the operations section in pma
|
||||
*
|
||||
* @package PhpMyAdmin
|
||||
*/
|
||||
|
||||
use PMA\libraries\engines\Innodb;
|
||||
use PMA\libraries\Message;
|
||||
use PMA\libraries\Partition;
|
||||
@ -16,10 +14,6 @@ use PMA\libraries\StorageEngine;
|
||||
use PMA\libraries\Table;
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get HTML output for database comment
|
||||
*
|
||||
|
||||
@ -8,10 +8,6 @@
|
||||
|
||||
use PMA\libraries\Message;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks Swekey authentication.
|
||||
*
|
||||
|
||||
@ -13,10 +13,6 @@ use PMA\libraries\properties\options\items\BoolPropertyItem;
|
||||
use PMA;
|
||||
use PMA\libraries\properties\options\items\TextPropertyItem;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the import for the CSV format
|
||||
*
|
||||
|
||||
@ -12,10 +12,6 @@ use PMA\libraries\properties\plugins\ImportPluginProperties;
|
||||
use PMA;
|
||||
use PMA\libraries\plugins\ImportPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the import for the MediaWiki format
|
||||
*
|
||||
|
||||
@ -18,10 +18,6 @@ use PMA;
|
||||
use PMA\libraries\plugins\ImportPlugin;
|
||||
use SimpleXMLElement;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* We need way to disable external XML entities processing.
|
||||
*/
|
||||
|
||||
@ -18,10 +18,6 @@ use PMA\libraries\gis\GISPoint;
|
||||
use PMA\libraries\gis\GISPolygon;
|
||||
use PMA\libraries\plugins\import\ShapeFile;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/* Get the ShapeFile class */
|
||||
require_once 'libraries/bfShapeFiles/ShapeFile.lib.php';
|
||||
|
||||
|
||||
@ -17,10 +17,6 @@ use PMA\libraries\plugins\ImportPlugin;
|
||||
use PMA\libraries\properties\options\items\SelectPropertyItem;
|
||||
use SqlParser;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the import for the SQL format
|
||||
*
|
||||
|
||||
@ -15,10 +15,6 @@ use PMA;
|
||||
use PMA\libraries\plugins\ImportPlugin;
|
||||
use SimpleXMLElement;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* We need way to disable external XML entities processing.
|
||||
*/
|
||||
|
||||
@ -9,10 +9,6 @@
|
||||
*/
|
||||
namespace PMA\libraries\plugins\import;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1) To load data from .dbf file only when the dBase extension is available.
|
||||
* 2) To use PMA_importGetNextChunk() functionality to read data, rather than
|
||||
|
||||
@ -9,10 +9,6 @@
|
||||
*/
|
||||
namespace PMA\libraries\plugins\import;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* 1) To load data from .dbf file only when the dBase extension is available.
|
||||
* 2) To use PMA_importGetNextChunk() functionality to read data, rather than
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\schema;
|
||||
|
||||
use PMA;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* This class is inherited by all schema classes
|
||||
* It contains those methods which are common in them
|
||||
|
||||
@ -7,10 +7,6 @@
|
||||
*/
|
||||
namespace PMA\libraries\plugins\schema;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relations preferences/statistics
|
||||
*
|
||||
|
||||
@ -15,10 +15,6 @@ use PMA\libraries\plugins\schema\dia\DiaRelationSchema;
|
||||
use PMA\libraries\properties\plugins\SchemaPluginProperties;
|
||||
use PMA\libraries\properties\options\items\SelectPropertyItem;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the schema export for the Dia format
|
||||
*
|
||||
|
||||
@ -16,10 +16,6 @@ use PMA\libraries\plugins\SchemaPlugin;
|
||||
use PMA\libraries\properties\plugins\SchemaPluginProperties;
|
||||
use PMA\libraries\properties\options\items\SelectPropertyItem;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the schema export for the EPS format
|
||||
*
|
||||
|
||||
@ -16,10 +16,6 @@ use PMA\libraries\plugins\SchemaPlugin;
|
||||
use PMA\libraries\properties\plugins\SchemaPluginProperties;
|
||||
use PMA\libraries\properties\options\items\SelectPropertyItem;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the schema export for the PDF format
|
||||
*
|
||||
|
||||
@ -15,10 +15,6 @@ use PMA\libraries\plugins\SchemaPlugin;
|
||||
use PMA\libraries\plugins\schema\svg\SvgRelationSchema;
|
||||
use PMA\libraries\properties\plugins\SchemaPluginProperties;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the schema export for the SVG format
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\schema;
|
||||
|
||||
use PMA;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Table preferences/statistics
|
||||
*
|
||||
|
||||
@ -13,10 +13,6 @@ use PMA\libraries\plugins\schema\pdf\TableStatsPdf;
|
||||
use PMA\libraries\plugins\schema\svg\TableStatsSvg;
|
||||
use PMA\libraries\plugins\schema\dia\TableStatsDia;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Dia Relation Schema Class
|
||||
*
|
||||
|
||||
@ -7,10 +7,6 @@
|
||||
*/
|
||||
namespace PMA\libraries\plugins\schema\dia;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relation preferences/statistics
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\schema\dia;
|
||||
use PMA\libraries\plugins\schema\ExportRelationSchema;
|
||||
use PMA\libraries\plugins\schema\TableStats;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Table preferences/statistics
|
||||
*
|
||||
|
||||
@ -13,10 +13,6 @@ use PMA\libraries\plugins\schema\ExportRelationSchema;
|
||||
use PMA\libraries\plugins\schema\pdf\TableStatsPdf;
|
||||
use PMA\libraries\plugins\schema\svg\TableStatsSvg;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* EPS Relation Schema Class
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\schema\eps;
|
||||
|
||||
use PMA\libraries\plugins\schema\RelationStats;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relation preferences/statistics
|
||||
*
|
||||
|
||||
@ -11,10 +11,6 @@ use PMA;
|
||||
use PMA\libraries\plugins\schema\ExportRelationSchema;
|
||||
use PMA\libraries\plugins\schema\TableStats;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Table preferences/statistics
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\schema\pdf;
|
||||
use PMA\libraries\PDF as PDF_lib;
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Skip the plugin if TCPDF is not available.
|
||||
*/
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\schema\pdf;
|
||||
use PMA\libraries\plugins\schema\ExportRelationSchema;
|
||||
use PMA\libraries\Util;
|
||||
|
||||
if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Skip the plugin if TCPDF is not available.
|
||||
*/
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\schema\pdf;
|
||||
|
||||
use PMA\libraries\plugins\schema\RelationStats;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relation preferences/statistics
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\schema\pdf;
|
||||
use PMA\libraries\plugins\schema\ExportRelationSchema;
|
||||
use PMA\libraries\plugins\schema\TableStats;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Table preferences/statistics
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\schema\svg;
|
||||
|
||||
use PMA\libraries\plugins\schema\RelationStats;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Relation preferences/statistics
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\schema\svg;
|
||||
use PMA;
|
||||
use XMLWriter;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* This Class inherits the XMLwriter class and
|
||||
* helps in developing structure of SVG Schema Export
|
||||
|
||||
@ -11,10 +11,6 @@ use PMA;
|
||||
use PMA\libraries\plugins\schema\ExportRelationSchema;
|
||||
use PMA\libraries\plugins\schema\TableStats;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Table preferences/statistics
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations;
|
||||
|
||||
use PMA\libraries\plugins\transformations\abs\TextLinkTransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the link transformation for text plain
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations;
|
||||
|
||||
use PMA\libraries\plugins\transformations\abs\LongToIPv4TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the long to ipv4 transformation for text plain
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations;
|
||||
|
||||
use PMA\libraries\plugins\transformations\abs\PreApPendTransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the prepend and/or append transformation for text plain.
|
||||
* Has two options: the text to be prepended and appended (if any, default '')
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations;
|
||||
|
||||
use PMA\libraries\plugins\transformations\abs\SubstringTransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Handles the substring transformation for text plain
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the Bool2Text transformations plugins.
|
||||
*
|
||||
|
||||
@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\IOTransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all the CodeMirror syntax highlighted editors
|
||||
*
|
||||
|
||||
@ -11,10 +11,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
use PMA;
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the date format transformations plugins.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the download transformations plugins.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the external transformations plugins.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the formatted transformations plugins.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the hex transformations plugins.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\IOTransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the image upload transformations plugins.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the long to IPv4 transformations plugins.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the prepend/append transformations plugins.
|
||||
*
|
||||
|
||||
@ -10,10 +10,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
|
||||
use PMA\libraries\plugins\IOTransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the regex validation
|
||||
* input transformations plugins.
|
||||
|
||||
@ -11,10 +11,6 @@ namespace PMA\libraries\plugins\transformations\abs;
|
||||
use PMA;
|
||||
use PMA\libraries\plugins\TransformationsPlugin;
|
||||
|
||||
if (!defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the SQL transformations plugins.
|
||||
*
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user