Use single quotes when we do not want to evaluate the string
This commit is contained in:
parent
b8be2a8cc9
commit
869d7c0e99
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the PluginObserver class */
|
||||
require_once "PluginObserver.class.php";
|
||||
require_once 'PluginObserver.class.php';
|
||||
|
||||
/**
|
||||
* Provides a common interface that will have to be implemented by all of the
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the PluginObserver class */
|
||||
require_once "PluginObserver.class.php";
|
||||
require_once 'PluginObserver.class.php';
|
||||
|
||||
/**
|
||||
* Provides a common interface that will have to be implemented by all of the
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the PluginObserver class */
|
||||
require_once "PluginObserver.class.php";
|
||||
require_once 'PluginObserver.class.php';
|
||||
|
||||
/**
|
||||
* Provides a common interface that will have to be implemented by all of the
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Each PluginObserver instance contains a PluginManager instance */
|
||||
require_once "PluginManager.class.php";
|
||||
require_once 'PluginManager.class.php';
|
||||
|
||||
/**
|
||||
* This class implements the SplObserver interface
|
||||
|
||||
@ -10,9 +10,9 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* It extends the PluginObserver abstract class */
|
||||
require_once "PluginObserver.class.php";
|
||||
require_once 'PluginObserver.class.php';
|
||||
/* It also implements the transformations interface */
|
||||
require_once "TransformationsInterface.int.php";
|
||||
require_once 'TransformationsInterface.int.php';
|
||||
|
||||
/**
|
||||
* Extends PluginObserver and provides a common interface that will have to
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the authentication interface */
|
||||
require_once "libraries/plugins/AuthenticationPlugin.class.php";
|
||||
require_once 'libraries/plugins/AuthenticationPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the config authentication method
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the authentication interface */
|
||||
require_once "libraries/plugins/AuthenticationPlugin.class.php";
|
||||
require_once 'libraries/plugins/AuthenticationPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Remember where to redirect the user
|
||||
|
||||
@ -12,7 +12,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the authentication interface */
|
||||
require_once "libraries/plugins/AuthenticationPlugin.class.php";
|
||||
require_once 'libraries/plugins/AuthenticationPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the HTTP authentication methods
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the authentication interface */
|
||||
require_once "libraries/plugins/AuthenticationPlugin.class.php";
|
||||
require_once 'libraries/plugins/AuthenticationPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the SignOn authentication method
|
||||
|
||||
@ -11,9 +11,9 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/* Get the table property class */
|
||||
require_once "libraries/plugins/export/TableProperty.class.php";
|
||||
require_once 'libraries/plugins/export/TableProperty.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the CodeGen class
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the CSV format
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Extend the export CSV class */
|
||||
require_once "libraries/plugins/export/ExportCsv.class.php";
|
||||
require_once 'libraries/plugins/export/ExportCsv.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the CSV-Excel format
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the HTML-Word format
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the JSON format
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the Latex format
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the MediaWiki class
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
$GLOBALS['ods_buffer'] = '';
|
||||
require_once 'libraries/opendocument.lib.php';
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
$GLOBALS['odt_buffer'] = '';
|
||||
require_once 'libraries/opendocument.lib.php';
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
/* Get the PMA_ExportPdf class */
|
||||
require_once 'libraries/plugins/export/PMA_ExportPdf.class.php';
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the PHP Array class
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the SQL class
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the Texy! text class
|
||||
|
||||
@ -14,7 +14,7 @@ if (! strlen($GLOBALS['db'])) { /* Can't do server export */
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the XML class
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the YAML format
|
||||
|
||||
@ -16,7 +16,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the export interface */
|
||||
require_once "libraries/plugins/ExportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ExportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the export for the [Name] format
|
||||
|
||||
@ -12,7 +12,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the import interface */
|
||||
require_once "libraries/plugins/ImportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the import for the CSV format
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the import interface */
|
||||
require_once "libraries/plugins/ImportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
|
||||
// We need relations enabled and we work only on database
|
||||
if ($GLOBALS['plugin_param'] !== 'table') {
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the import interface */
|
||||
require_once "libraries/plugins/ImportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the import for the MediaWiki format
|
||||
|
||||
@ -20,7 +20,7 @@ if (!function_exists('libxml_disable_entity_loader')) {
|
||||
}
|
||||
|
||||
/* Get the import interface */
|
||||
require_once "libraries/plugins/ImportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the import for the ODS format
|
||||
|
||||
@ -16,11 +16,11 @@ if (PMA_DRIZZLE) {
|
||||
}
|
||||
|
||||
/* Get the import interface*/
|
||||
require_once "libraries/plugins/ImportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
/* Get the ShapeFile class */
|
||||
require_once "libraries/bfShapeFiles/ShapeFile.lib.php";
|
||||
require_once "libraries/plugins/import/ShapeFile.class.php";
|
||||
require_once "libraries/plugins/import/ShapeRecord.class.php";
|
||||
require_once 'libraries/bfShapeFiles/ShapeFile.lib.php';
|
||||
require_once 'libraries/plugins/import/ShapeFile.class.php';
|
||||
require_once 'libraries/plugins/import/ShapeRecord.class.php';
|
||||
|
||||
/**
|
||||
* Handles the import for ESRI Shape files
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the import interface */
|
||||
require_once "libraries/plugins/ImportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the import for the SQL format
|
||||
|
||||
@ -20,7 +20,7 @@ if (!function_exists('libxml_disable_entity_loader')) {
|
||||
}
|
||||
|
||||
/* Get the import interface */
|
||||
require_once "libraries/plugins/ImportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the import for the XML format
|
||||
|
||||
@ -16,7 +16,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the import interface */
|
||||
require_once "libraries/plugins/ImportPlugin.class.php";
|
||||
require_once 'libraries/plugins/ImportPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the import for the [Name] format
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/UploadInterface.int.php";
|
||||
require_once 'libraries/plugins/UploadInterface.int.php';
|
||||
|
||||
/**
|
||||
* Implementation for the APC extension
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/UploadInterface.int.php";
|
||||
require_once 'libraries/plugins/UploadInterface.int.php';
|
||||
|
||||
/**
|
||||
* Implementation for no plugin
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/UploadInterface.int.php";
|
||||
require_once 'libraries/plugins/UploadInterface.int.php';
|
||||
|
||||
/**
|
||||
* Implementation for upload progress
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/UploadInterface.int.php";
|
||||
require_once 'libraries/plugins/UploadInterface.int.php';
|
||||
|
||||
/**
|
||||
* Implementation for session
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
/* Get the download transformations interface */
|
||||
require_once "abstract/DownloadTransformationsPlugin.class.php";
|
||||
require_once 'abstract/DownloadTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the download transformation for application octetstream
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the hex transformations interface */
|
||||
require_once "abstract/HexTransformationsPlugin.class.php";
|
||||
require_once 'abstract/HexTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the hex transformation for application octetstream
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the inline transformations interface */
|
||||
require_once "abstract/InlineTransformationsPlugin.class.php";
|
||||
require_once 'abstract/InlineTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the inline transformation for image jpeg
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the link transformations interface */
|
||||
require_once "abstract/ImageLinkTransformationsPlugin.class.php";
|
||||
require_once 'abstract/ImageLinkTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the link transformation for image jpeg
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the inline transformations interface */
|
||||
require_once "abstract/InlineTransformationsPlugin.class.php";
|
||||
require_once 'abstract/InlineTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the inline transformation for image png
|
||||
|
||||
@ -13,7 +13,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the [TransformationName] transformations interface */
|
||||
require_once "abstract/[TransformationName]TransformationsPlugin.class.php";
|
||||
require_once 'abstract/[TransformationName]TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the [TransformationName] transformation for [MIMEType] - [MIMESubtype]
|
||||
|
||||
@ -13,7 +13,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the [TransformationName] transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the append transformations interface */
|
||||
require_once "abstract/AppendTransformationsPlugin.class.php";
|
||||
require_once 'abstract/AppendTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the append transformation for text plain.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the date format transformations interface */
|
||||
require_once "abstract/DateFormatTransformationsPlugin.class.php";
|
||||
require_once 'abstract/DateFormatTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the date format transformation for text plain
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the external transformations interface */
|
||||
require_once "abstract/ExternalTransformationsPlugin.class.php";
|
||||
require_once 'abstract/ExternalTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the external transformation for text plain
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the formatted transformations interface */
|
||||
require_once "abstract/FormattedTransformationsPlugin.class.php";
|
||||
require_once 'abstract/FormattedTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the formatted transformation for text plain
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the image link transformations interface */
|
||||
require_once "abstract/TextImageLinkTransformationsPlugin.class.php";
|
||||
require_once 'abstract/TextImageLinkTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the image link transformation for text plain
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the link transformations interface */
|
||||
require_once "abstract/TextLinkTransformationsPlugin.class.php";
|
||||
require_once 'abstract/TextLinkTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the link transformation for text plain
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the long to ipv4 transformations interface */
|
||||
require_once "abstract/LongToIPv4TransformationsPlugin.class.php";
|
||||
require_once 'abstract/LongToIPv4TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the long to ipv4 transformation for text plain
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the sql transformations interface */
|
||||
require_once "abstract/SQLTransformationsPlugin.class.php";
|
||||
require_once 'abstract/SQLTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the sql transformation for text plain
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the substring transformations interface */
|
||||
require_once "abstract/SubstringTransformationsPlugin.class.php";
|
||||
require_once 'abstract/SubstringTransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Handles the substring transformation for text plain
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the append transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the date format transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the download transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the external transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the formatted transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the hex transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
/* For PMA_transformation_global_html_replace */
|
||||
require_once 'libraries/transformations.lib.php';
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
/* For PMA_transformation_global_html_replace */
|
||||
require_once 'libraries/transformations.lib.php';
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the long to IPv4 transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the SQL transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
|
||||
/**
|
||||
* Provides common methods for all of the substring transformations plugins.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
/* For PMA_transformation_global_html_replace */
|
||||
require_once 'libraries/transformations.lib.php';
|
||||
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* Get the transformations interface */
|
||||
require_once "libraries/plugins/TransformationsPlugin.class.php";
|
||||
require_once 'libraries/plugins/TransformationsPlugin.class.php';
|
||||
/* For PMA_transformation_global_html_replace */
|
||||
require_once 'libraries/transformations.lib.php';
|
||||
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyItem class */
|
||||
require_once "OptionsPropertyItem.class.php";
|
||||
require_once 'OptionsPropertyItem.class.php';
|
||||
|
||||
/**
|
||||
* Parents group property items and provides methods to manage groups of
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the PropertyItem class */
|
||||
require_once "libraries/properties/PropertyItem.class.php";
|
||||
require_once 'libraries/properties/PropertyItem.class.php';
|
||||
|
||||
/**
|
||||
* Superclass for
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyItem class */
|
||||
require_once "OptionsPropertyItem.class.php";
|
||||
require_once 'OptionsPropertyItem.class.php';
|
||||
|
||||
/**
|
||||
* Parents only single property items (not groups).
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyGroup class */
|
||||
require_once "libraries/properties/options/OptionsPropertyGroup.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyGroup.class.php';
|
||||
|
||||
/**
|
||||
* Group property item class of type main
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyGroup class */
|
||||
require_once "libraries/properties/options/OptionsPropertyGroup.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyGroup.class.php';
|
||||
|
||||
/**
|
||||
* Group property item class of type root
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyGroup class */
|
||||
require_once "libraries/properties/options/OptionsPropertyGroup.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyGroup.class.php';
|
||||
|
||||
/**
|
||||
* Group property item class of type subgroup
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyOneItem class */
|
||||
require_once "libraries/properties/options/OptionsPropertyOneItem.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php';
|
||||
|
||||
/**
|
||||
* Single property item class of type bool
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyOneItem class */
|
||||
require_once "libraries/properties/options/OptionsPropertyOneItem.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php';
|
||||
|
||||
/**
|
||||
* Single property item class of type doc
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyOneItem class */
|
||||
require_once "libraries/properties/options/OptionsPropertyOneItem.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php';
|
||||
|
||||
/**
|
||||
* Single property item class of type hidden
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyOneItem class */
|
||||
require_once "libraries/properties/options/OptionsPropertyOneItem.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php';
|
||||
|
||||
/**
|
||||
* Single property item class of type messageOnly
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyOneItem class */
|
||||
require_once "libraries/properties/options/OptionsPropertyOneItem.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php';
|
||||
|
||||
/**
|
||||
* Single property item class of type radio
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyOneItem class */
|
||||
require_once "libraries/properties/options/OptionsPropertyOneItem.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php';
|
||||
|
||||
/**
|
||||
* Single property item class of type select
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the OptionsPropertyOneItem class */
|
||||
require_once "libraries/properties/options/OptionsPropertyOneItem.class.php";
|
||||
require_once 'libraries/properties/options/OptionsPropertyOneItem.class.php';
|
||||
|
||||
/**
|
||||
* Single property item class of type text
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the PluginPropertyItem class */
|
||||
require_once "PluginPropertyItem.class.php";
|
||||
require_once 'PluginPropertyItem.class.php';
|
||||
|
||||
/**
|
||||
* Defines possible options and getters and setters for them.
|
||||
|
||||
@ -10,7 +10,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the PluginPropertyItem class */
|
||||
require_once "PluginPropertyItem.class.php";
|
||||
require_once 'PluginPropertyItem.class.php';
|
||||
|
||||
/**
|
||||
* Defines possible options and getters and setters for them.
|
||||
|
||||
@ -11,7 +11,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
}
|
||||
|
||||
/* This class extends the PropertyItem class */
|
||||
require_once "libraries/properties/PropertyItem.class.php";
|
||||
require_once 'libraries/properties/PropertyItem.class.php';
|
||||
|
||||
/**
|
||||
* Superclass for
|
||||
|
||||
@ -8,7 +8,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
require_once "Export_Relation_Schema.class.php";
|
||||
require_once 'Export_Relation_Schema.class.php';
|
||||
|
||||
/**
|
||||
* This Class inherits the XMLwriter class and
|
||||
|
||||
@ -8,7 +8,7 @@ if (! defined('PHPMYADMIN')) {
|
||||
exit;
|
||||
}
|
||||
|
||||
require_once "Export_Relation_Schema.class.php";
|
||||
require_once 'Export_Relation_Schema.class.php';
|
||||
|
||||
/**
|
||||
* This Class is EPS Library and
|
||||
|
||||
@ -19,7 +19,7 @@ $cfgRelation = PMA_getRelationsParam();
|
||||
|
||||
require_once 'libraries/transformations.lib.php';
|
||||
require_once 'libraries/Index.class.php';
|
||||
require_once "libraries/schema/Export_Relation_Schema.class.php";
|
||||
require_once 'libraries/schema/Export_Relation_Schema.class.php';
|
||||
|
||||
/**
|
||||
* get all the export options and verify
|
||||
@ -62,5 +62,5 @@ if (!file_exists('libraries/schema/' . $path . '_Relation_Schema.class.php')) {
|
||||
__('File doesn\'t exist')
|
||||
);
|
||||
}
|
||||
require "libraries/schema/".$path."_Relation_Schema.class.php";
|
||||
require "libraries/schema/".$path.'_Relation_Schema.class.php';
|
||||
$obj_schema = eval("new PMA_".$path."_Relation_Schema();");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user