Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-30Use short array syntax instead of long array syntaxMaurício Meneghini Fauth
Replaces array() with []. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2018-05-16Enable strict mode in PHP filesMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2018-02-23Replace static methods with instance methodsMaurício Meneghini Fauth
Replaces PhpMyAdmin\UserPreferences static methods with instance methods. Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-09-13Refactor user_preferences functions to static methodsMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-09-06Fold validity check with getting classMichal Čihař
There is no need to do this twice (once in ::get). Signed-off-by: Michal Čihař <michal@cihar.com>
2017-09-06Rewrite User preferences forms as clasesMichal Čihař
Signed-off-by: Michal Čihař <michal@cihar.com>
2017-09-05Refactor configuration descriptions into classMichal Čihař
This avoids loading them all into global namespace on every request. Issue #11731 Signed-off-by: Michal Čihař <michal@cihar.com>
2017-07-09Move config classes to PhpMyAdmin namespaceMaurício Meneghini Fauth
- Move ConfigFile to PhpMyAdmin namespace - Move FormDisplay to PhpMyAdmin namespace - Move Form to PhpMyAdmin namespace - Move PageSettings to PhpMyAdmin namespace - Move ServerConfigChecks to PhpMyAdmin namespace - Move Validator to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-07-08Move classes to PhpMyAdmin namespaceMaurício Meneghini Fauth
- Move Table to PhpMyAdmin namespace - Move Template to PhpMyAdmin namespace - Move ThemeManager to PhpMyAdmin namespace - Move Theme to PhpMyAdmin namespace - Move Tracker to PhpMyAdmin namespace - Move Transformations to PhpMyAdmin namespace - Move TypesMySQL to PhpMyAdmin namespace - Move Types to PhpMyAdmin namespace - Move Util to PhpMyAdmin namespace - Move VersionInformation to PhpMyAdmin namespace - Move Url to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-07-01Move classes to PhpMyAdmin namespaceMaurício Meneghini Fauth
- Move OpenDocument to PhpMyAdmin namespace - Move OutputBuffering to PhpMyAdmin namespace - Move Partition to PhpMyAdmin namespace - Move Pdf class to PhpMyAdmin namespace - Move RecentFavoriteTable to PhpMyAdmin namespace - Move Response to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-06-29Move classes to PhpMyAdmin namespaceMaurício Meneghini Fauth
- Move Advisor to PhpMyAdmin namespace - Move Bookmark to PhpMyAdmin namespace - Move Charsets to PhpMyAdmin namespace - Move Config class to PhpMyAdmin namespace - Move Console class to PhpMyAdmin namespace - Move Core to PhpMyAdmin namespace - Move DatabaseInterface to PhpMyAdmin namespace - Move DbList to PhpMyAdmin namespace - Move DbQbe to PhpMyAdmin namespace - Move DbSearch to PhpMyAdmin namespace - Move DisplayResults to PhpMyAdmin namespace - Move Encoding to PhpMyAdmin namespace - Move Error to PhpMyAdmin namespace - Move ErrorHandler to PhpMyAdmin namespace - Move File to PhpMyAdmin namespace - Move Font to PhpMyAdmin namespace - Move Footer to PhpMyAdmin namespace - Move Header to PhpMyAdmin namespace - Move Index to PhpMyAdmin namespace - Move IndexColumn to PhpMyAdmin namespace - Move LanguageManager to PhpMyAdmin namespace - Move Language to PhpMyAdmin namespace - Move Linter to PhpMyAdmin namespace - Move ListAbstract to PhpMyAdmin namespace - Move ListDatabase to PhpMyAdmin namespace Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2017-06-03Refactor the core functions into static methodsMaurício Meneghini Fauth
Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
2016-06-17More consistency for URL::getCommonMichal Čihař
Now URL::getCommon always returns HTML encoded string, if you want unencded one, use URL::getCommonRaw. This makes it easier to review the code if uses correct variant. Also I've fixed several wrong uses of the HTML encoded variant in Location header. Signed-off-by: Michal Čihař <michal@cihar.com>
2016-02-22Refactored url parmeters generating, Issue #11990Durgesh
Signed-off-by: Durgesh <007durgesh219@gmail.com>
2016-02-03Remove PmaAbsoluteUri from redirectsMichal Čihař
This is no longer needed as per RFC 7231. Issue #11412 Signed-off-by: Michal Čihař <michal@cihar.com>
2015-09-01Set namespace on config classes.Hugues Peccatte
Update config classes. Add @noinspection tag. Update documentation and script. Set ConfigGenerator in a namespace. Rename ConfigGenerator filename. Remove ConfigGenerator requires. Fix namespaces of mock objects. Remove useless require. Add missing 'use'. Add missing require. Update PHPDoc. Fix class test typo. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-09-01Set namespace on Advisor, Config, Console and Util classes.Hugues Peccatte
Set namespace on DbQbe. Set namespace to 'DbSearch'. Split Advisor.class.php file. Change Advisor namespace. Rename DbQbe class and file. Set namespace on DisplayResults. Set namespace on Error. Use namespace for ErrorHandler. Add class autoloader. Change ErrorHandler filename. Remove some require. Update Config namespace path. Update PMA_Util to PMA\libraries\Util. Rename Font and File classes files. Use namespace for Footer. Set namespace in all libraries classes. Namespace OutputBuffering. Export SubPartition. Rename Partition file. Namespace PDF. Namespace RecentFavoriteTable. Replace PMA_Response by Response and PMA_Message by Message. Update uses and calls. Fix unit tests. Fix SqlParser autoload. Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-07-23Make PHPCS happy.Hugues Peccatte
Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2015-05-22Fix coding style in page settingsNisarg Jhaveri
Signed-off-by: Nisarg Jhaveri <nisargjhaveri@gmail.com>
2015-05-22Navigation panel settingsNisarg Jhaveri
Signed-off-by: Nisarg Jhaveri <nisargjhaveri@gmail.com>
2015-05-15Quit using filter_input since they bypass token checkMadhura Jayaratne
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2015-05-14Return HTML instead of echo-ing directly in FormDisplayNisarg Jhaveri
Signed-off-by: Nisarg Jhaveri <nisargjhaveri@gmail.com>
2015-03-06Remove unneeded closing tagsRahul Kadyan
Closing tags at the end of file are not mandatory. It is often suggested to omit to closing tags at the end of file to prevent unwanted effects as PHP will start output buffering if there is any character after closing tag. Reference: http://php.net/manual/en/language.basic-syntax.phptags.php Signed-off-by: Rahul Kadyan <hi@znck.me>
2015-01-04Do not unset configuration storage details hereMadhura Jayaratne
Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
2014-10-18More fixes to new PMA_URL_getCommon styleAnn + J.M
Signed-off-by: Ann + J.M <phpMyAdmin@ZweiSteinSoft.de>
2014-10-18Convert PMA_URL_getCommon calls to new styleAnn + J.M
Rewritten tests need validation Signed-Off-By: Ann + J.M. <phpMyAdmin@ZweiSteinSoft.de>
2014-08-11RFE#1123: Zeroconf PMA tables support.Ashutosh Dhundhara
Signed-off-by: Ashutosh Dhundhara <ashutoshdhundhara@yahoo.com>
2014-02-02Correct punctuation for sentencesMichal Čihař
Signed-off-by: Michal Čihař <michal@cihar.com>
2013-11-03Refactored ConfigFile class so that it is no longer a singletonPiotr Przybylski
Fixes bug #4123 Double config including
2013-08-07Better names for URL generating functionsMichal Čihař
2012-10-31Dropped server side functionality for reloading the left frame from user ↵Rouslan Placella
preferences forms
2012-10-28Coding style: Fix some methods namesMadhura Jayaratne
2012-06-11Drop display() from Header and Footer classes. The Response class will do ↵Rouslan Placella
all the rendering.
2012-06-11Dropped footer.inc.phpRouslan Placella
2012-06-11PMA_Footer and PMA_Header no longer need to be singletonsRouslan Placella
2012-06-11Dropped header.inc.php in favor of the PMA_Header classRouslan Placella
2012-04-14Fix Checkstyle Warnings - Type: CloseBracketLine (Closing parenthesis of a ↵Madhura Jayaratne
multi-line function call must be on a line by itself)
2012-03-17Leading ./ paths for includes can be omitted, part 2Jo Michael
2011-10-25Use package name PhpMyAdminMichal Čihař
Needed to match phpdoc rules as package name must begin with upper case.
2011-05-09For easier reading, replace "!isset" with "! isset"Marc Delisle
2011-05-04Start to replace warning level with error levelMarc Delisle
2010-08-09second part of error message display changesCrack
2010-08-04fix generation of theme unique valueCrack
refresh session cache for config after save
2010-08-02bugfix: user preferences don't work correctly without output bufferingCrack
2010-08-01allow users to set only_db and hide_dbCrack
2010-07-28keep selected tab after saveCrack
change pmadb to phpMyAdmin configuration storage in warning string
2010-07-26Changes to conform to latest merge:Crack
- use require instead if require_once for footer.inc.php - rename pmadb to phpMyAdmin configuration storage
2010-07-22Developers tab no longer depends on UserprefsDisallow, introduced ↵Crack
UserprefsDeveloperTab setting
2010-07-22remove debugCrack
use proper function to cancel event
2010-07-22more styling for disabled optionsCrack
new "Developer" tab (by default all options are disabled, users can't modify them) fixed UserprefsDisallow export in setup script