XoopsModules25x/apcal

View on GitHub
admin/myblocksadmin2.php

Summary

Maintainability
F
4 days
Test Coverage

list_groups2 accesses the super-global variable $GLOBALS.
Open

function list_groups2()
{
    global $target_mid, $target_mname, $xoopsDB;

    $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
Severity: Minor
Found in admin/myblocksadmin2.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

list_groups2 accesses the super-global variable $GLOBALS.
Open

function list_groups2()
{
    global $target_mid, $target_mname, $xoopsDB;

    $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
Severity: Minor
Found in admin/myblocksadmin2.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

list_groups2 accesses the super-global variable $GLOBALS.
Open

function list_groups2()
{
    global $target_mid, $target_mname, $xoopsDB;

    $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
Severity: Minor
Found in admin/myblocksadmin2.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

list_groups2 accesses the super-global variable $GLOBALS.
Open

function list_groups2()
{
    global $target_mid, $target_mname, $xoopsDB;

    $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
Severity: Minor
Found in admin/myblocksadmin2.php by phpmd

Superglobals

Since: 0.2

Accessing a super-global variable directly is considered a bad practice. These variables should be encapsulated in objects that are provided by a framework, for instance.

Example

class Foo {
    public function bar() {
        $name = $_POST['foo'];
    }
}

Source

Method list_blockinstances has 203 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function list_blockinstances()
{
    global $query4redirect, $block_arr, $xoopsGTicket;

    $myts = MyTextSanitizer::getInstance();
Severity: Major
Found in admin/myblocksadmin2.php - About 1 day to fix

    Function list_blockinstances has a Cognitive Complexity of 51 (exceeds 5 allowed). Consider refactoring.
    Open

    function list_blockinstances()
    {
        global $query4redirect, $block_arr, $xoopsGTicket;
    
        $myts = MyTextSanitizer::getInstance();
    Severity: Minor
    Found in admin/myblocksadmin2.php - About 7 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    File myblocksadmin2.php has 305 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    // ------------------------------------------------------------------------- //
    //                     myblocksadmin_for_2.2.php                             //
    //                - XOOPS block admin for each modules -                     //
    //                          GIJOE <http://www.peak.ne.jp/>                   //
    Severity: Minor
    Found in admin/myblocksadmin2.php - About 3 hrs to fix

      The function list_blockinstances() has an NPath complexity of 25350. The configured NPath complexity threshold is 200.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      NPathComplexity

      Since: 0.1

      The NPath complexity of a method is the number of acyclic execution paths through that method. A threshold of 200 is generally considered the point where measures should be taken to reduce complexity.

      Example

      class Foo {
          function bar() {
              // lots of complicated code
          }
      }

      Source https://phpmd.org/rules/codesize.html#npathcomplexity

      The function list_blockinstances() has 234 lines of code. Current threshold is set to 100. Avoid really long methods.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      The function list_blockinstances() has a Cyclomatic Complexity of 28. The configured cyclomatic complexity threshold is 10.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CyclomaticComplexity

      Since: 0.1

      Complexity is determined by the number of decision points in a method plus one for the method entry. The decision points are 'if', 'while', 'for', and 'case labels'. Generally, 1-4 is low complexity, 5-7 indicates moderate complexity, 8-10 is high complexity, and 11+ is very high complexity.

      Example

      // Cyclomatic Complexity = 11
      class Foo {
      1   public function example() {
      2       if ($a == $b) {
      3           if ($a1 == $b1) {
                      fiddle();
      4           } elseif ($a2 == $b2) {
                      fiddle();
                  } else {
                      fiddle();
                  }
      5       } elseif ($c == $d) {
      6           while ($c == $d) {
                      fiddle();
                  }
      7        } elseif ($e == $f) {
      8           for ($n = 0; $n < $h; $n++) {
                      fiddle();
                  }
              } else {
                  switch ($z) {
      9               case 1:
                          fiddle();
                          break;
      10              case 2:
                          fiddle();
                          break;
      11              case 3:
                          fiddle();
                          break;
                      default:
                          fiddle();
                          break;
                  }
              }
          }
      }

      Source https://phpmd.org/rules/codesize.html#cyclomaticcomplexity

      Missing class import via use statement (line '134', column '24').
      Open

          $criteria->add(new Criteria('isactive', 1));
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '133', column '54').
      Open

          $criteria                                  = new CriteriaCompo(new Criteria('hasmain', 1));
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '133', column '72').
      Open

          $criteria                                  = new CriteriaCompo(new Criteria('hasmain', 1));
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '339', column '17').
      Open

          $form = new MyXoopsGroupPermForm(_AM_APCAL_ADGS, 1, 'block_read', '');
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '123', column '21').
      Open

          $crit     = new Criteria('bid', '(' . implode(',', array_keys($block_arr)) . ')', 'IN');
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      Missing class import via use statement (line '124', column '21').
      Open

          $criteria = new CriteriaCompo($crit);
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      MissingImport

      Since: 2.7.0

      Importing all external classes in a file through use statements makes them clearly visible.

      Example

      function make() {
          return new \stdClass();
      }

      Source http://phpmd.org/rules/cleancode.html#MissingImport

      The method list_blockinstances uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

              } else {
                  switch ($instances[$i]->getVar('side')) {
                      default:
                      case XOOPS_SIDEBLOCK_LEFT:
                          $ssel0 = ' checked';
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      ElseExpression

      Since: 1.4.0

      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

      Example

      class Foo
      {
          public function bar($flag)
          {
              if ($flag) {
                  // one branch
              } else {
                  // another branch
              }
          }
      }

      Source https://phpmd.org/rules/cleancode.html#elseexpression

      The method list_blockinstances uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

                  } else {
                      $cachetime_options .= "<option value='$cachetime'>$cachetime_name</option>\n";
                  }
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      ElseExpression

      Since: 1.4.0

      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

      Example

      class Foo
      {
          public function bar($flag)
          {
              if ($flag) {
                  // one branch
              } else {
                  // another branch
              }
          }
      }

      Source https://phpmd.org/rules/cleancode.html#elseexpression

      The method list_blockinstances uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

                      } else {
                          $module_options .= "<option label='$mval' value='$mkey'>$mval</option>\n";
                      }
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      ElseExpression

      Since: 1.4.0

      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

      Example

      class Foo
      {
          public function bar($flag)
          {
              if ($flag) {
                  // one branch
              } else {
                  // another branch
              }
          }
      }

      Source https://phpmd.org/rules/cleancode.html#elseexpression

      Avoid using static access to class 'MyTextSanitizer' in method 'list_blockinstances'.
      Open

          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      StaticAccess

      Since: 1.4.0

      Static access causes unexchangeable dependencies to other classes and leads to hard to test code. Avoid using static access at all costs and instead inject dependencies through the constructor. The only case when static access is acceptable is when used for factory methods.

      Example

      class Foo
      {
          public function bar()
          {
              Bar::baz();
          }
      }

      Source https://phpmd.org/rules/cleancode.html#staticaccess

      Avoid unused local variables such as '$xoopsDB'.
      Open

          global $target_mid, $target_mname, $xoopsDB;
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      UnusedLocalVariable

      Since: 0.2

      Detects when a local variable is declared and/or assigned, but not used.

      Example

      class Foo {
          public function doSomething()
          {
              $i = 5; // Unused
          }
      }

      Source https://phpmd.org/rules/unusedcode.html#unusedlocalvariable

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

      if (!empty($target_module) && is_object($target_module)) {
          // specified by dirname
          $target_mid     = $target_module->getVar('mid');
          $target_mname   = $target_module->getVar('name') . '&nbsp;' . sprintf('(%2.2f)', $target_module->getVar('version') / 100.0);
          $query4redirect = '?dirname=' . urlencode(strip_tags($_GET['dirname']));
      Severity: Major
      Found in admin/myblocksadmin2.php and 1 other location - About 5 hrs to fix
      admin/myblocksadmin.php on lines 68..81

      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 ($instances[$i]->getVar('visible') != 1) {
                  $sseln = ' checked';
                  $scoln = '#FF0000';
              } else {
                  switch ($instances[$i]->getVar('side')) {
      Severity: Major
      Found in admin/myblocksadmin2.php and 1 other location - About 4 hrs to fix
      admin/myblocksadmin.php on lines 145..172

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

      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

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

          $cachetimes = array(
              '0'       => _NOCACHE,
              '30'      => sprintf(_SECONDS, 30),
              '60'      => _MINUTE,
              '300'     => sprintf(_MINUTES, 5),
      Severity: Major
      Found in admin/myblocksadmin2.php and 1 other location - About 3 hrs to fix
      admin/myblocksadmin.php on lines 104..116

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

      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

              echo "
              <tr valign='middle'>
                  <td class='$class'>
                      $name
                      <br>
      Severity: Major
      Found in admin/myblocksadmin2.php and 1 other location - About 2 hrs to fix
      admin/myblocksadmin.php on lines 239..286

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

      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

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

      if (!empty($_POST['submit'])) {
          if (!$xoopsGTicket->check(true, 'myblocksadmin')) {
              redirect_header(XOOPS_URL . '/', 3, $xoopsGTicket->getErrors());
          }
      
      
      Severity: Major
      Found in admin/myblocksadmin2.php and 1 other location - About 1 hr to fix
      admin/myblocksadmin.php on lines 347..354

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

      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

      A file should declare new symbols (classes, functions, constants, etc.) and cause no other side effects, or it should execute logic with side effects, but should not do both. The first symbol is defined on line 88 and the first side effect is on line 8.
      Open

      <?php
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 146 characters
      Open

          redirect_header(XOOPS_URL . '/modules/' . $xoopsModule->dirname() . "/admin/myblocksadmin.php$query4redirect", 1, _AM_APCALAM_APCALDBUPDATED);
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 135 characters
      Open

                          <input type='radio' name='side[$i]' value='" . XOOPS_SIDEBLOCK_LEFT . "' style='background-color:$scol0;' $ssel0 />
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 122 characters
      Open

      $sql       = 'SELECT bid,name,show_func,func_file,template FROM ' . $db->prefix('newblocks') . " WHERE mid='$target_mid'";
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 158 characters
      Open

              $delete_link = "<br><a href='" . XOOPS_URL . "/modules/system/admin.php?fct=blocksadmin&amp;op=delete&amp;id=$i&amp;selmod=$mid'>" . _DELETE . '</a>';
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 138 characters
      Open

                          <input type='radio' name='side[$i]' value='" . XOOPS_CENTERBLOCK_RIGHT . "' style='background-color:$scol4;' $ssel4 />
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 128 characters
      Open

          $target_mname   = $target_module->getVar('name') . '&nbsp;' . sprintf('(%2.2f)', $target_module->getVar('version') / 100.0);
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 137 characters
      Open

                          <input type='radio' name='side[$i]' value='" . XOOPS_CENTERBLOCK_LEFT . "' style='background-color:$scol2;' $ssel2 />
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 138 characters
      Open

                      <a href='" . XOOPS_URL . "/modules/system/admin.php?fct=blocksadmin&amp;op=edit&amp;id=$i'>" . _EDIT . "</a>{$delete_link}
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 139 characters
      Open

                          <input type='radio' name='side[$i]' value='" . XOOPS_CENTERBLOCK_CENTER . "' style='background-color:$scol3;' $ssel3 />
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      Line exceeds 120 characters; contains 136 characters
      Open

                          <input type='radio' name='side[$i]' value='" . XOOPS_SIDEBLOCK_RIGHT . "' style='background-color:$scol1;' $ssel1 />
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpcodesniffer

      The variable $block_arr is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_main is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $cachetime_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_main is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $delete_link is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $target_mname is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_list is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_list is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $cachetime_name is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $delete_link is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $target_mid is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $target_mid is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $block_configs is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $item_list is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $block_arr is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $block_arr is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $cachetime_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $target_mname is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $cachetime_name is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $cachetime_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $item_id is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_main is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $item_id is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $item_name is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_list is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_list is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_main is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $target_mid is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_main is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $block_arr is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $cachetime_name is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_list is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_main is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_list is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $block_configs is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $target_mname is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $module_main is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $cachetime_options is not named in camelCase.
      Open

      function list_blockinstances()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          $myts = MyTextSanitizer::getInstance();
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $target_mid is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $item_list is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $item_list is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $target_mid is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      The variable $item_name is not named in camelCase.
      Open

      function list_groups2()
      {
          global $target_mid, $target_mname, $xoopsDB;
      
          $result = $GLOBALS['xoopsDB']->query('SELECT i.instanceid,i.title FROM '
      Severity: Minor
      Found in admin/myblocksadmin2.php by phpmd

      CamelCaseVariableName

      Since: 0.2

      It is considered best practice to use the camelCase notation to name variables.

      Example

      class ClassName {
          public function doSomething() {
              $data_module = new DataModule();
          }
      }

      Source

      There are no issues that match your filters.

      Category
      Status