mariuz/firebirdwebadmin

View on GitHub

Showing 204 of 204 total issues

File spanish.inc.php has 490 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php
// Purpose        Language strings definitions
// Author         Lutz Brueckner <irie@gmx.de>
// Copyright      (c) 2000-2006 by Lutz Brueckner,
//                published under the terms of the GNU General Public Licence v.2,
Severity: Minor
Found in lang/spanish.inc.php - About 7 hrs to fix

    File hungarian.inc.php has 490 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    // Purpose        Language strings definitions
    // Author         Lutz Brueckner <irie@gmx.de>
    // Copyright      (c) 2000-2006 by Lutz Brueckner,
    //                published under the terms of the GNU General Public Licence v.2,
    Severity: Minor
    Found in lang/hungarian.inc.php - About 7 hrs to fix

      File japanese.inc.php has 490 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php
      // Purpose        Language strings definitions
      // Author         Lutz Brueckner <irie@gmx.de>
      // Copyright      (c) 2000-2006 by Lutz Brueckner,
      //                published under the terms of the GNU General Public Licence v.2,
      Severity: Minor
      Found in lang/japanese.inc.php - About 7 hrs to fix

        File polish.inc.php has 490 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        <?php
        // Purpose        Language strings definitions
        // Author         Lutz Brueckner <irie@gmx.de>
        // Copyright      (c) 2000-2006 by Lutz Brueckner,
        //                published under the terms of the GNU General Public Licence v.2,
        Severity: Minor
        Found in lang/polish.inc.php - About 7 hrs to fix

          File german.inc.php has 490 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          <?php
          // Purpose        Language strings definitions
          // Author         Lutz Brueckner <irie@gmx.de>
          // Copyright      (c) 2000-2006 by Lutz Brueckner,
          //                published under the terms of the GNU General Public Licence v.2,
          Severity: Minor
          Found in lang/german.inc.php - About 7 hrs to fix

            File Romanian.inc.php has 490 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            <?php
            // Purpose        Language strings definitions
            // Author         Lutz Brueckner <irie@gmx.de>
            // Copyright      (c) 2000-2006 by Lutz Brueckner,
            //                published under the terms of the GNU General Public Licence v.2,
            Severity: Minor
            Found in lang/Romanian.inc.php - About 7 hrs to fix

              File Czech.inc.php has 490 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              <?php
              // Purpose        Language strings definitions
              // Author         Lutz Brueckner <irie@gmx.de>
              // Copyright      (c) 2000-2006 by Lutz Brueckner,
              //                published under the terms of the GNU General Public Licence v.2,
              Severity: Minor
              Found in lang/Czech.inc.php - About 7 hrs to fix

                File english.inc.php has 490 lines of code (exceeds 250 allowed). Consider refactoring.
                Open

                <?php
                // Purpose        Language strings definitions
                // Author         Lutz Brueckner <irie@gmx.de>
                // Copyright      (c) 2000-2006 by Lutz Brueckner,
                //                published under the terms of the GNU General Public Licence v.2,
                Severity: Minor
                Found in lang/english.inc.php - About 7 hrs to fix

                  File handle_watchtable.inc.php has 488 lines of code (exceeds 250 allowed). Consider refactoring.
                  Open

                  <?php
                  // File           inc/handle_watchtable.inc.php / FirebirdWebAdmin
                  // Purpose        provides the watch table handling for sql.php and data.php
                  // Author         Lutz Brueckner <irie@gmx.de>
                  // Copyright      (c) 2000-2006 by Lutz Brueckner,
                  Severity: Minor
                  Found in inc/handle_watchtable.inc.php - About 7 hrs to fix

                    Method get_tables has 188 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function get_tables()
                    {
                        global $dbhandle, $fb_error, $s_tables, $s_fields, $s_foreigns, $s_primaries, $s_uniques, $s_login;
                        global $s_charsets, $s_tables_counts, $s_views_counts, $s_tables_def, $s_tables_comp;
                    
                    
                    Severity: Major
                    Found in inc/get_tables.inc.php - About 7 hrs to fix

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                      function get_tabmenu_top_fixed($page)
                      {
                      
                          $menuentries = array('Database' => url_session('database.php'),
                              'Tables' => url_session('tables.php'),
                      Severity: Major
                      Found in inc/functions.inc.php and 1 other location - About 7 hrs to fix
                      inc/functions.inc.php on lines 960..987

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 225.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      Similar blocks of code found in 2 locations. Consider refactoring.
                      Open

                      function get_tabmenu($page)
                      {
                      
                          $menuentries = array('Database' => url_session('database.php'),
                              'Tables' => url_session('tables.php'),
                      Severity: Major
                      Found in inc/functions.inc.php and 1 other location - About 7 hrs to fix
                      inc/functions.inc.php on lines 992..1019

                      Duplicated Code

                      Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                      Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                      When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                      Tuning

                      This issue has a mass of 225.

                      We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                      The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                      If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                      See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                      Refactorings

                      Further Reading

                      File session.inc.php has 419 lines of code (exceeds 250 allowed). Consider refactoring.
                      Open

                      <?php
                      // File           session.inc.php / FirebirdWebAdmin
                      // Purpose        session and fallback related functions, define all session variables
                      // Author         Lutz Brueckner <irie@gmx.de>
                      // Copyright      (c) 2000-2006 by Lutz Brueckner,
                      Severity: Minor
                      Found in inc/session.inc.php - About 6 hrs to fix

                        Similar blocks of code found in 3 locations. Consider refactoring.
                        Open

                            if (isset($_POST['acc_view_del'])
                            && isset($_POST['acc_delview_name'])
                            && $_POST['acc_delview_name'] != '') {
                                $dname = $_POST['acc_delview_name'];
                        
                        
                        Severity: Major
                        Found in accessories.php and 2 other locations - About 5 hrs to fix
                        accessories.php on lines 216..234
                        accessories.php on lines 320..338

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 196.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 3 locations. Consider refactoring.
                        Open

                            if (isset($_POST['acc_domain_del'])
                            && isset($_POST['acc_domain_dname'])
                            && $_POST['acc_domain_dname'] != '') {
                                $dname = $_POST['acc_domain_dname'];
                        
                        
                        Severity: Major
                        Found in accessories.php and 2 other locations - About 5 hrs to fix
                        accessories.php on lines 320..338
                        accessories.php on lines 528..546

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 196.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 3 locations. Consider refactoring.
                        Open

                            if (isset($_POST['acc_trigger_del'])
                            && isset($_POST['acc_trigger_del_name'])
                            && $_POST['acc_trigger_del_name'] != '') {
                                $dname = $_POST['acc_trigger_del_name'];
                        
                        
                        Severity: Major
                        Found in accessories.php and 2 other locations - About 5 hrs to fix
                        accessories.php on lines 216..234
                        accessories.php on lines 528..546

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 196.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            if (isset($_POST['acc_index_del'])
                            && isset($_POST['acc_index_dname'])
                            && $_POST['acc_index_dname'] != '') {
                                $dname = $_POST['acc_index_dname'];
                        
                        
                        Severity: Major
                        Found in accessories.php and 1 other location - About 5 hrs to fix
                        accessories.php on lines 679..696

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 186.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                            if (isset($_POST['acc_exc_del'])
                            && isset($_POST['acc_exc_del_name'])
                            && $_POST['acc_exc_del_name'] != '') {
                                $dname = $_POST['acc_exc_del_name'];
                        
                        
                        Severity: Major
                        Found in accessories.php and 1 other location - About 5 hrs to fix
                        accessories.php on lines 39..56

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 186.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                        function get_view_source($name)
                        {
                            global $dbhandle;
                        
                            $vsource = '';
                        Severity: Major
                        Found in inc/views.inc.php and 1 other location - About 5 hrs to fix
                        inc/procedures.inc.php on lines 91..112

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 184.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Similar blocks of code found in 2 locations. Consider refactoring.
                        Open

                        function get_procedure_source($name)
                        {
                            global $dbhandle;
                        
                            $psource = '';
                        Severity: Major
                        Found in inc/procedures.inc.php and 1 other location - About 5 hrs to fix
                        inc/views.inc.php on lines 169..190

                        Duplicated Code

                        Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                        Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                        When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                        Tuning

                        This issue has a mass of 184.

                        We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                        The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                        If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                        See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                        Refactorings

                        Further Reading

                        Severity
                        Category
                        Status
                        Source
                        Language