Use single quotes when we do not want to evaluate the string

This commit is contained in:
Michal Čihař 2012-10-16 11:18:16 +02:00
parent b8be2a8cc9
commit 869d7c0e99
85 changed files with 91 additions and 91 deletions

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -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();");