XoopsModules25x/apcal

View on GitHub
blocks/apcal_thedays_schedule.php

Summary

Maintainability
F
3 days
Test Coverage

apcal_thedays_schedule_show_tpl accesses the super-global variable $GLOBALS.
Open

    function apcal_thedays_schedule_show_tpl($options)
    {
        global $xoopsConfig, $xoopsDB;

        $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
Severity: Minor
Found in blocks/apcal_thedays_schedule.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

apcal_thedays_schedule_edit accesses the super-global variable $GLOBALS.
Open

    function apcal_thedays_schedule_edit($options)
    {
        global $xoopsDB, $xoopsConfig;

        $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
Severity: Minor
Found in blocks/apcal_thedays_schedule.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

apcal_thedays_schedule_show_tpl accesses the super-global variable $GLOBALS.
Open

    function apcal_thedays_schedule_show_tpl($options)
    {
        global $xoopsConfig, $xoopsDB;

        $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
Severity: Minor
Found in blocks/apcal_thedays_schedule.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

apcal_thedays_schedule_show_tpl accesses the super-global variable $GLOBALS.
Open

    function apcal_thedays_schedule_show_tpl($options)
    {
        global $xoopsConfig, $xoopsDB;

        $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
Severity: Minor
Found in blocks/apcal_thedays_schedule.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 apcal_thedays_schedule_show_tpl has 31 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function apcal_thedays_schedule_show_tpl($options)
    {
        global $xoopsConfig, $xoopsDB;

        $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
Severity: Minor
Found in blocks/apcal_thedays_schedule.php - About 1 hr to fix

    Method apcal_thedays_schedule_edit has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function apcal_thedays_schedule_edit($options)
        {
            global $xoopsDB, $xoopsConfig;
    
            $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
    Severity: Minor
    Found in blocks/apcal_thedays_schedule.php - About 1 hr to fix

      Function apcal_thedays_schedule_show_tpl has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.php - About 45 mins 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

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

              $cal->images_url  = "$mod_url/assets/images/$skin_folder";
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 '$skin_folder' which will lead to PHP notices.
      Open

              $cal->images_url  = "$mod_url/assets/images/$skin_folder";
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 '$skin_folder' which will lead to PHP notices.
      Open

              $cal->images_path = "$mod_path/assets/images/$skin_folder";
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 '$skin_folder' which will lead to PHP notices.
      Open

              $cal->images_path = "$mod_path/assets/images/$skin_folder";
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 '52', column '20').
      Open

              $cal = new APCal_xoops('', $xoopsConfig['language'], true);
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 '104', column '35').
      Open

              $cal                = new APCal_xoops(date('Y-n-j'), $xoopsConfig['language'], true);
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 apcal_thedays_schedule_show_tpl uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

              } else {
                  global $block_arr, $i;
                  if (is_object($block_arr[$i])) {
                      $title_fmt = $block_arr[$i]->getVar('title');
                      $title     = sprintf($title_fmt, sprintf(_APCAL_FMT_MD, $cal->month_short_names[date('n', $cal->unixtime)], $cal->date_short_names[date('j', $cal->unixtime)]));
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 unused local variables such as '$xoopsDB'.
      Open

              global $xoopsConfig, $xoopsDB;
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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

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

              global $xoopsDB, $xoopsConfig;
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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

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

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Major
      Found in blocks/apcal_thedays_schedule.php and 1 other location - About 1 day to fix
      blocks/apcal_todays_schedule.php on lines 70..111

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

      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 (substr(XOOPS_VERSION, 6, 3) > 2.0) {
                  $title_fmt = $GLOBALS['apcal_blockinstance_object']->getVar('title');
                  $GLOBALS['apcal_blockinstance_object']->setVar('title', sprintf($title_fmt, sprintf(_APCAL_FMT_MD, $cal->month_short_names[date('n', $cal->unixtime)],
                                                                                                      $cal->date_short_names[date('j', $cal->unixtime)])));
              } else {
      Severity: Major
      Found in blocks/apcal_thedays_schedule.php and 1 other location - About 1 day to fix
      blocks/apcal_after_schedule.php on lines 68..79

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

      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 variables with short names like $i. Configured minimum length is 3.
      Open

                  global $block_arr, $i;
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 23 and the first side effect is on line 27.
      Open

      <?php

      Only one argument is allowed per line in a multi-line function call
      Open

                  $GLOBALS['apcal_blockinstance_object']->setVar('title', sprintf($title_fmt, sprintf(_APCAL_FMT_MD, $cal->month_short_names[date('n', $cal->unixtime)],

      Line exceeds 120 characters; contains 176 characters
      Open

                      $title     = sprintf($title_fmt, sprintf(_APCAL_FMT_MD, $cal->month_short_names[date('n', $cal->unixtime)], $cal->date_short_names[date('j', $cal->unixtime)]));

      Line exceeds 120 characters; contains 162 characters
      Open

                  $GLOBALS['apcal_blockinstance_object']->setVar('title', sprintf($title_fmt, sprintf(_APCAL_FMT_MD, $cal->month_short_names[date('n', $cal->unixtime)],

      Line exceeds 120 characters; contains 149 characters
      Open

                                                                                                      $cal->date_short_names[date('j', $cal->unixtime)])));

      Opening parenthesis of a multi-line function call must be the last content on the line
      Open

                  $GLOBALS['apcal_blockinstance_object']->setVar('title', sprintf($title_fmt, sprintf(_APCAL_FMT_MD, $cal->month_short_names[date('n', $cal->unixtime)],

      Multi-line function call not indented correctly; expected 12 spaces but found 96
      Open

                                                                                                      $cal->date_short_names[date('j', $cal->unixtime)])));

      Closing parenthesis of a multi-line function call must be on a line by itself
      Open

                                                                                                      $cal->date_short_names[date('j', $cal->unixtime)])));

      The variable $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $title_fmt is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $depth_desc is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $now_cid is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_url is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $skin_folder is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $now_cid is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $skin_folder is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $skin_folder is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_url is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $cat_title4show is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_url is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_url is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $now_cid is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $now_cid is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $cat_title4show is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_url is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $skin_folder is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_url is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $title_fmt is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $title_fmt is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_path is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $mod_url is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $title_fmt is not named in camelCase.
      Open

          function apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 $depth_desc is not named in camelCase.
      Open

          function apcal_thedays_schedule_edit($options)
          {
              global $xoopsDB, $xoopsConfig;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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 apcal_thedays_schedule_show_tpl($options)
          {
              global $xoopsConfig, $xoopsDB;
      
              $moduleDirName = empty($options[0]) ? basename(dirname(__DIR__)) : $options[0];
      Severity: Minor
      Found in blocks/apcal_thedays_schedule.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