XoopsModules25x/apcal

View on GitHub
admin/myblocksadmin.php

Summary

Maintainability
F
4 days
Test Coverage

get_block_configs accesses the super-global variable $_GET.
Open

function get_block_configs()
{
    $error_reporting_level = error_reporting(0);
    if (preg_match('/^[.0-9a-zA-Z_-]+$/', @$_GET['dirname'])) {
        include __DIR__ . '/../../' . $_GET['dirname'] . '/xoops_version.php';
Severity: Minor
Found in admin/myblocksadmin.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

get_block_configs accesses the super-global variable $_GET.
Open

function get_block_configs()
{
    $error_reporting_level = error_reporting(0);
    if (preg_match('/^[.0-9a-zA-Z_-]+$/', @$_GET['dirname'])) {
        include __DIR__ . '/../../' . $_GET['dirname'] . '/xoops_version.php';
Severity: Minor
Found in admin/myblocksadmin.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

Function list_blocks has a Cognitive Complexity of 48 (exceeds 5 allowed). Consider refactoring.
Open

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

    // cachetime options
Severity: Minor
Found in admin/myblocksadmin.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

Method list_blocks has 182 lines of code (exceeds 25 allowed). Consider refactoring.
Open

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

    // cachetime options
Severity: Major
Found in admin/myblocksadmin.php - About 7 hrs to fix

    File myblocksadmin.php has 289 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php
    /*
     * You may not change or alter any portion of this comment or credits
     * of supporting developers from this source code or any supporting source code
     * which is considered copyrighted (c) material of the original comment or credit authors.
    Severity: Minor
    Found in admin/myblocksadmin.php - About 2 hrs to fix

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

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.php by phpmd

      The function list_blocks() has an NPath complexity of 13609. The configured NPath complexity threshold is 200.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks() has a Cyclomatic Complexity of 25. The configured cyclomatic complexity threshold is 10.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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

      Avoid using undefined variables such as '$modversion' which will lead to PHP notices.
      Open

              return $modversion['blocks'];
      Severity: Minor
      Found in admin/myblocksadmin.php by phpmd

      UndefinedVariable

      Since: 2.8.0

      Detects when a variable is used that has not been defined before.

      Example

      class Foo
      {
          private function bar()
          {
              // $message is undefined
              echo $message;
          }
      }

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

      Avoid using undefined variables such as '$modversion' which will lead to PHP notices.
      Open

          if (empty($modversion['blocks'])) {
      Severity: Minor
      Found in admin/myblocksadmin.php by phpmd

      UndefinedVariable

      Since: 2.8.0

      Detects when a variable is used that has not been defined before.

      Example

      class Foo
      {
          private function bar()
          {
              // $message is undefined
              echo $message;
          }
      }

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

      Missing class import via use statement (line '193', column '30').
      Open

              $criteria      = new CriteriaCompo(new Criteria('hasmain', 1));
      Severity: Minor
      Found in admin/myblocksadmin.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

      Remove error control operator '@' on line 314.
      Open

      function get_block_configs()
      {
          $error_reporting_level = error_reporting(0);
          if (preg_match('/^[.0-9a-zA-Z_-]+$/', @$_GET['dirname'])) {
              include __DIR__ . '/../../' . $_GET['dirname'] . '/xoops_version.php';
      Severity: Minor
      Found in admin/myblocksadmin.php by phpmd

      ErrorControlOperator

      Error suppression should be avoided if possible as it doesn't just suppress the error, that you are trying to stop, but will also suppress errors that you didn't predict would ever occur. Consider changing error_reporting() level and/or setting up your own error handler.

      Example

      function foo($filePath) {
          $file = @fopen($filPath); // hides exceptions
          $key = @$array[$notExistingKey]; // assigns null to $key
      }

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

      Missing class import via use statement (line '193', column '48').
      Open

              $criteria      = new CriteriaCompo(new Criteria('hasmain', 1));
      Severity: Minor
      Found in admin/myblocksadmin.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 '336', column '17').
      Open

          $form = new MyXoopsGroupPermForm(_AM_APCAL_ADGS, 1, 'block_read', '');
      Severity: Minor
      Found in admin/myblocksadmin.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 '194', column '28').
      Open

              $criteria->add(new Criteria('isactive', 1));
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

              } else {
                  switch ($block_arr[$i]->getVar('side')) {
                      default:
                      case XOOPS_SIDEBLOCK_LEFT:
                          $ssel0 = ' checked';
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

              } else {
                  $clone_link = '';
              }
      Severity: Minor
      Found in admin/myblocksadmin.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 'XoopsDatabaseFactory' in method 'list_blocks'.
      Open

              $db            = XoopsDatabaseFactory::getDatabaseConnection();
      Severity: Minor
      Found in admin/myblocksadmin.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

      The method list_blocks 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/myblocksadmin.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_blocks 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 value='$mid'>$mname</option>\n";
                  }
      Severity: Minor
      Found in admin/myblocksadmin.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 get_block_configs uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

          } else {
              include __DIR__ . '/../xoops_version.php';
          }
      Severity: Minor
      Found in admin/myblocksadmin.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 get_block_configs uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

          } else {
              return $modversion['blocks'];
          }
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

              } else {
                  $can_clone = false;
                  foreach ($block_configs as $bconf) {
                      if ($block_arr[$i]->getVar('show_func') == $bconf['show_func']
                          && $block_arr[$i]->getVar('func_file') == $bconf['file']
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

              } else {
                  $delete_link = '';
              }
      Severity: Minor
      Found in admin/myblocksadmin.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

      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/myblocksadmin.php and 1 other location - About 5 hrs to fix
      admin/myblocksadmin2.php on lines 52..65

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

      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/myblocksadmin.php and 1 other location - About 3 hrs to fix
      admin/myblocksadmin2.php on lines 95..107

      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/myblocksadmin.php and 1 other location - About 2 hrs to fix
      admin/myblocksadmin2.php on lines 225..272

      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/myblocksadmin.php and 1 other location - About 1 hr to fix
      admin/myblocksadmin2.php on lines 350..357

      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

      Avoid excessively long variable names like $error_reporting_level. Keep variable name length under 20.
      Open

          $error_reporting_level = error_reporting(0);
      Severity: Minor
      Found in admin/myblocksadmin.php by phpmd

      LongVariable

      Since: 0.2

      Detects when a field, formal or local variable is declared with a long name.

      Example

      class Something {
          protected $reallyLongIntName = -3; // VIOLATION - Field
          public static function main( array $interestingArgumentsList[] ) { // VIOLATION - Formal
              $otherReallyLongName = -5; // VIOLATION - Local
              for ($interestingIntIndex = 0; // VIOLATION - For
                   $interestingIntIndex < 10;
                   $interestingIntIndex++ ) {
              }
          }
      }

      Source https://phpmd.org/rules/naming.html#longvariable

      Avoid variables with short names like $db. Configured minimum length is 3.
      Open

              $db            = XoopsDatabaseFactory::getDatabaseConnection();
      Severity: Minor
      Found in admin/myblocksadmin.php by phpmd

      ShortVariable

      Since: 0.2

      Detects when a field, local, or parameter has a very short name.

      Example

      class Something {
          private $q = 15; // VIOLATION - Field
          public static function main( array $as ) { // VIOLATION - Formal
              $r = 20 + $this->q; // VIOLATION - Local
              for (int $i = 0; $i < 10; $i++) { // Not a Violation (inside FOR)
                  $r += $this->q;
              }
          }
      }

      Source https://phpmd.org/rules/naming.html#shortvariable

      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 99 and the first side effect is on line 21.
      Open

      <?php
      Severity: Minor
      Found in admin/myblocksadmin.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/myblocksadmin.php by phpcodesniffer

      Line exceeds 120 characters; contains 141 characters
      Open

                          <input type='radio' name='side[$bid]' value='" . XOOPS_CENTERBLOCK_CENTER . "' style='background-color:$scol3;' $ssel3 />
      Severity: Minor
      Found in admin/myblocksadmin.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/myblocksadmin.php by phpcodesniffer

      Line exceeds 120 characters; contains 139 characters
      Open

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

      Line exceeds 120 characters; contains 138 characters
      Open

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

      Line exceeds 120 characters; contains 137 characters
      Open

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

      Line exceeds 120 characters; contains 121 characters
      Open

                      <a href='admin.php?fct=blocksadmin&amp;op=edit&amp;bid=$bid'>" . _EDIT . "</a>{$delete_link}{$clone_link}
      Severity: Minor
      Found in admin/myblocksadmin.php by phpcodesniffer

      Line exceeds 120 characters; contains 124 characters
      Open

              $result        = $db->query('SELECT module_id FROM ' . $db->prefix('block_module_link') . " WHERE block_id='$bid'");
      Severity: Minor
      Found in admin/myblocksadmin.php by phpcodesniffer

      Line exceeds 120 characters; contains 140 characters
      Open

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

      The variable $block_arr is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $can_clone is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $selected_mids is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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 $selected_mids is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $error_reporting_level is not named in camelCase.
      Open

      function get_block_configs()
      {
          $error_reporting_level = error_reporting(0);
          if (preg_match('/^[.0-9a-zA-Z_-]+$/', @$_GET['dirname'])) {
              include __DIR__ . '/../../' . $_GET['dirname'] . '/xoops_version.php';
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $error_reporting_level is not named in camelCase.
      Open

      function get_block_configs()
      {
          $error_reporting_level = error_reporting(0);
          if (preg_match('/^[.0-9a-zA-Z_-]+$/', @$_GET['dirname'])) {
              include __DIR__ . '/../../' . $_GET['dirname'] . '/xoops_version.php';
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $can_clone is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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 $selected_mid is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $clone_link is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $can_clone is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $clone_link is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $selected_mid is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $can_clone is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $selected_mids is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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 $clone_link is not named in camelCase.
      Open

      function list_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_blocks()
      {
          global $query4redirect, $block_arr, $xoopsGTicket;
      
          // cachetime options
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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_groups()
      {
          global $target_mid, $target_mname, $block_arr;
      
          $item_list = array();
      Severity: Minor
      Found in admin/myblocksadmin.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