Skip to content

Commit

Permalink
oop: camel caps for import plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
amarin15 committed Jun 8, 2012
1 parent 683d767 commit 4e764e7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion libraries/plugin_interface.lib.php
Expand Up @@ -19,7 +19,6 @@
*/
function PMA_getPlugin($plugin_type, $plugin_format, $plugins_dir, $plugin_param = false)
{
// todo replace strtoupper with CamelCaps (ex: HtmlWord)
$class_name = strtoupper($plugin_type[0])
. strtolower(substr($plugin_type, 1))
. strtoupper($plugin_format[0])
Expand Down
Expand Up @@ -18,7 +18,7 @@
*
* @package PhpMyAdmin-Import
*/
class ImportSQL extends ImportPlugin
class ImportSql extends ImportPlugin
{
/**
* Constructor
Expand Down
Expand Up @@ -28,7 +28,7 @@
* @todo add descriptions
* @package PhpMyAdmin-Import
*/
class ImportXML extends ImportPlugin
class ImportXml extends ImportPlugin
{
/**
* Database name
Expand Down

0 comments on commit 4e764e7

Please sign in to comment.