Fix merge conflicts

Signed-off-by: Marc Delisle <marc@infomarc.info>
This commit is contained in:
Marc Delisle 2015-11-29 07:29:32 -05:00
commit ab7942be89
179 changed files with 710 additions and 1159 deletions

View File

@ -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" />

View File

@ -7,10 +7,6 @@
*/
namespace PMA\libraries;
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Class to handle database QBE search
*

View File

@ -5,9 +5,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Formats interval like 10 per hour

View File

@ -1,7 +1,6 @@
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Run autoloader
* Load class autoloader
*
* @package PhpMyAdmin
*/

View File

@ -6,10 +6,6 @@
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Defines the bookmark parameters for the current user
*

View File

@ -5,9 +5,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Function to get html for one relational key

View File

@ -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
*

View File

@ -5,9 +5,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Removes all variables from request except whitelisted ones.

View File

@ -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') {

View File

@ -5,13 +5,8 @@
*
* @package PhpMyAdmin
*/
use PMA\libraries\Table;
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Transforms the radio button field_key into 4 arrays
*

View File

@ -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

View File

@ -7,10 +7,6 @@
*/
use PMA\libraries\Message;
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Get HTML for the Change password dialog
*

View File

@ -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.
*

View File

@ -5,9 +5,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Prints details about the current Git commit revision

View File

@ -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
*

View File

@ -5,9 +5,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Compares the names of two languages.

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
use PMA\libraries\StorageEngine;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The BDB storage engine
*

View File

@ -7,10 +7,6 @@
*/
namespace PMA\libraries\engines;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* This is same as BDB
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
use PMA\libraries\StorageEngine;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The binary log storage engine
*

View File

@ -7,10 +7,6 @@
*/
namespace PMA\libraries\engines;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The Innobase storage engine
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\engines;
use PMA\libraries\StorageEngine;
use PMA\libraries\Util;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The InnoDB storage engine
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
use PMA\libraries\StorageEngine;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The MEMORY (HEAP) storage engine
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
use PMA\libraries\StorageEngine;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The MERGE storage engine
*

View File

@ -7,10 +7,6 @@
*/
namespace PMA\libraries\engines;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The MERGE storage engine
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
use PMA\libraries\StorageEngine;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The MyISAM storage engine
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
use PMA\libraries\StorageEngine;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The NDBCLUSTER storage engine
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\engines;
use PMA;
use PMA\libraries\StorageEngine;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The PBXT storage engine
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\engines;
use PMA\libraries\StorageEngine;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* The performance schema storage engine
*

View File

@ -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
*

View File

@ -5,9 +5,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Returns array of filtered file names

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
use PMA;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Factory class that handles the creation of geometric objects.
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
use \TCPDF;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Base class for all GIS data type classes.
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
use \TCPDF;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Handles actions related to GIS GEOMETRYCOLLECTION objects
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
use \TCPDF;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Handles actions related to GIS LINESTRING objects
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
use \TCPDF;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Handles actions related to GIS MULTILINESTRING objects
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
use \TCPDF;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Handles actions related to GIS MULTIPOINT objects
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
use \TCPDF;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Handles actions related to GIS MULTIPOLYGON objects
*

View File

@ -10,10 +10,6 @@ namespace PMA\libraries\gis;
use \TCPDF;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Handles actions related to GIS POINT objects
*

View File

@ -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
*

View File

@ -11,10 +11,6 @@ namespace PMA\libraries\gis;
use PMA\libraries\Util;
use \TCPDF;
if (!defined('PHPMYADMIN')) {
exit;
}
require_once 'libraries/sql.lib.php';
/**

View File

@ -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

View File

@ -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
*

View File

@ -6,9 +6,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Gets the "true" IP address of the current user

View File

@ -6,9 +6,6 @@
* @package PhpMyAdmin
*
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Format a string so it can be a string inside JavaScript code inside an

View File

@ -7,9 +7,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Logs user information to webserver logs.

View File

@ -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.

View File

@ -7,9 +7,6 @@
*
* @package PhpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Gets url params

View File

@ -7,10 +7,6 @@
*/
use PMA\libraries\Util;
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Generate charset dropdown box
*

View File

@ -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
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\navigation\nodes;
use PMA;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Represents a columns node in the navigation tree
*

View File

@ -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
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\navigation\nodes;
use PMA;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Represents a event node in the navigation tree
*

View File

@ -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

View File

@ -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
*

View File

@ -8,10 +8,6 @@
use PMA\libraries\Message;
if (! defined('PHPMYADMIN')) {
exit;
}
/**
* Checks Swekey authentication.
*

View File

@ -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
*

View File

@ -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
*

View File

@ -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.
*/

View File

@ -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';

View File

@ -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
*

View File

@ -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.
*/

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -7,10 +7,6 @@
*/
namespace PMA\libraries\plugins\schema;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Relations preferences/statistics
*

View File

@ -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
*

View File

@ -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
*

View File

@ -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
*

View File

@ -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
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\schema;
use PMA;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Table preferences/statistics
*

View File

@ -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
*

View File

@ -7,10 +7,6 @@
*/
namespace PMA\libraries\plugins\schema\dia;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Relation preferences/statistics
*

View File

@ -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
*

View File

@ -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
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\schema\eps;
use PMA\libraries\plugins\schema\RelationStats;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Relation preferences/statistics
*

View File

@ -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
*

View File

@ -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.
*/

View File

@ -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.
*/

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\schema\pdf;
use PMA\libraries\plugins\schema\RelationStats;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Relation preferences/statistics
*

View File

@ -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
*

View File

@ -9,10 +9,6 @@ namespace PMA\libraries\plugins\schema\svg;
use PMA\libraries\plugins\schema\RelationStats;
if (!defined('PHPMYADMIN')) {
exit;
}
/**
* Relation preferences/statistics
*

View File

@ -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

View File

@ -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
*

View File

@ -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
*

View File

@ -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
*

View File

@ -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 '')

View File

@ -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
*

View File

@ -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.
*

View File

@ -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
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.
*

View File

@ -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.

View File

@ -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