mambax7/adslight

View on GitHub
admin/validate_ads.php

Summary

Maintainability
F
1 wk
Test Coverage

index accesses the super-global variable $GLOBALS.
Open

function index(): void
{
    global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
    $helper = Helper::getInstance();
    $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
Severity: Minor
Found in admin/validate_ads.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

modifyAds accesses the super-global variable $GLOBALS.
Open

function modifyAds($lid): void
{
    global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
    $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
    $helper        = Helper::getInstance();
Severity: Minor
Found in admin/validate_ads.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

indexView accesses the super-global variable $GLOBALS.
Open

function indexView($lid): void
{
    global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
    $helper = Helper::getInstance();
    $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
Severity: Minor
Found in admin/validate_ads.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

File validate_ads.php has 760 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php declare(strict_types=1);

/*
 * 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
Severity: Major
Found in admin/validate_ads.php - About 1 day to fix

    Method index has 164 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function index(): void
    {
        global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
        $helper = Helper::getInstance();
        $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
    Severity: Major
    Found in admin/validate_ads.php - About 6 hrs to fix

      Method modifyAds has 160 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function modifyAds($lid): void
      {
          global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
          $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
          $helper        = Helper::getInstance();
      Severity: Major
      Found in admin/validate_ads.php - About 6 hrs to fix

        Function modifyAds has a Cognitive Complexity of 37 (exceeds 5 allowed). Consider refactoring.
        Open

        function modifyAds($lid): void
        {
            global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
            $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
            $helper        = Helper::getInstance();
        Severity: Minor
        Found in admin/validate_ads.php - About 5 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 indexView has 136 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function indexView($lid): void
        {
            global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
            $helper = Helper::getInstance();
            $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
        Severity: Major
        Found in admin/validate_ads.php - About 5 hrs to fix

          Function index has a Cognitive Complexity of 35 (exceeds 5 allowed). Consider refactoring.
          Open

          function index(): void
          {
              global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
              $helper = Helper::getInstance();
              $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
          Severity: Minor
          Found in admin/validate_ads.php - About 5 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

          Function indexView has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
          Open

          function indexView($lid): void
          {
              global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
              $helper = Helper::getInstance();
              $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
          Severity: Minor
          Found in admin/validate_ads.php - About 3 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 listingValid has 85 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function listingValid(
              $lid,
              $cat,
              $title,
              $status,
          Severity: Major
          Found in admin/validate_ads.php - About 3 hrs to fix

            Method modifyAdsS has 20 arguments (exceeds 4 allowed). Consider refactoring.
            Open

                $lid,
                $cat,
                $title,
                $status,
                $expire,
            Severity: Major
            Found in admin/validate_ads.php - About 2 hrs to fix

              Method listingValid has 20 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                  $lid,
                  $cat,
                  $title,
                  $status,
                  $expire,
              Severity: Major
              Found in admin/validate_ads.php - About 2 hrs to fix

                Function listingDel has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                Open

                function listingDel($lid, $photo): void
                {
                    global $xoopsDB, $admin_lang;
                    $helper  = Helper::getInstance();
                    $lid     = (int)$lid;
                Severity: Minor
                Found in admin/validate_ads.php - About 1 hr 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 listingDel has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function listingDel($lid, $photo): void
                {
                    global $xoopsDB, $admin_lang;
                    $helper  = Helper::getInstance();
                    $lid     = (int)$lid;
                Severity: Minor
                Found in admin/validate_ads.php - About 1 hr to fix

                  The function listingValid has 20 parameters. Consider reducing the number of parameters to less than 10.
                  Open

                  function listingValid(
                      $lid,
                      $cat,
                      $title,
                      $status,
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

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

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  The function indexView() has an NPath complexity of 2306. The configured NPath complexity threshold is 200.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 modifyAds() has 178 lines of code. Current threshold is set to 100. Avoid really long methods.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  The function modifyAdsS has 20 parameters. Consider reducing the number of parameters to less than 10.
                  Open

                  function modifyAdsS(
                      $lid,
                      $cat,
                      $title,
                      $status,
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  The function modifyAds() has an NPath complexity of 55298. The configured NPath complexity threshold is 200.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 index() has an NPath complexity of 2681856. The configured NPath complexity threshold is 200.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 indexView() has 147 lines of code. Current threshold is set to 100. Avoid really long methods.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

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

                  function listingValid(
                      $lid,
                      $cat,
                      $title,
                      $status,
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

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

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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

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

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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

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

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  CyclomaticComplexity

                  Since: 0.1

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

                  Example

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

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

                  Missing class import via use statement (line '57', column '19').
                  Open

                          throw new \RuntimeException(sprintf('Directory "%s" was not created', $photo_resized_dir));
                  Severity: Minor
                  Found in admin/validate_ads.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 '51', column '19').
                  Open

                          throw new \RuntimeException(sprintf('Directory "%s" was not created', $photo_dir));
                  Severity: Minor
                  Found in admin/validate_ads.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 '54', column '19').
                  Open

                          throw new \RuntimeException(sprintf('Directory "%s" was not created', $photo_thumb_dir));
                  Severity: Minor
                  Found in admin/validate_ads.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 '416', column '31').
                  Open

                          $tempXoopsLocal = new \XoopsLocal();
                  Severity: Minor
                  Found in admin/validate_ads.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 '260', column '31').
                  Open

                          $tempXoopsLocal = new \XoopsLocal();
                  Severity: Minor
                  Found in admin/validate_ads.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 '111', column '35').
                  Open

                              $tempXoopsLocal = new \XoopsLocal();
                  Severity: Minor
                  Found in admin/validate_ads.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

                  Avoid using static access to class '\XoopsModules\Adslight\Helper' in method 'listingDel'.
                  Open

                      $helper  = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  StaticAccess

                  Since: 1.4.0

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

                  Example

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

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

                  Avoid using static access to class '\XoopsModules\Adslight\Utility' in method 'listingValid'.
                  Open

                          $tags['TYPE']       = Utility::getNameType($type);
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  StaticAccess

                  Since: 1.4.0

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

                  Example

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

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

                  Avoid using static access to class '\XoopsModules\Adslight\Utility' in method 'listingValid'.
                  Open

                      $tags['TYPE']            = Utility::getNameType($type);
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  StaticAccess

                  Since: 1.4.0

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

                  Example

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

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

                  Avoid using static access to class '\XoopsModules\Adslight\Helper' in method 'modifyAdsS'.
                  Open

                      $helper = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 listingValid uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                  Open

                      } else {
                          $helper->redirect('admin/validate_ads.php', 1, _AM_ADSLIGHT_UPGRADEFAILED);
                      }
                  Severity: Minor
                  Found in admin/validate_ads.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 '\XoopsModules\Adslight\Utility' in method 'modifyAds'.
                  Open

                          $wysiwyg_text_area = Utility::getEditor($helper);
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  StaticAccess

                  Since: 1.4.0

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

                  Example

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

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

                  Avoid using static access to class '\XoopsModules\Adslight\Helper' in method 'indexView'.
                  Open

                      $helper = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  StaticAccess

                  Since: 1.4.0

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

                  Example

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

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

                  Avoid using static access to class '\XoopsModules\Adslight\Helper' in method 'modifyAds'.
                  Open

                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  StaticAccess

                  Since: 1.4.0

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

                  Example

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

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

                  Avoid using static access to class '\XoopsModules\Adslight\Helper' in method 'index'.
                  Open

                      $helper = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  StaticAccess

                  Since: 1.4.0

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

                  Example

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

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

                  Avoid using static access to class '\XoopsModules\Adslight\Utility' in method 'indexView'.
                  Open

                          $wysiwyg_text_area = Utility::getEditor(
                              _AM_ADSLIGHT_DESC
                          );
                  Severity: Minor
                  Found in admin/validate_ads.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 index uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                  Open

                      } else {
                          echo "<table class='outer' width='50%' border='0'><tr><td width=40>";
                          echo "<img src='../assets/images/admin/search_button_green_32.png' border=0 alt=\"._AM_ADSLIGHT_RELEASEOK.\" ></td><td>";
                          echo "<span style='color: #00B4C4;'><b>" . _AM_ADSLIGHT_NOANNVAL . '</b></span>';
                          echo '</td></tr></table><br>';
                  Severity: Minor
                  Found in admin/validate_ads.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 '\XoopsModules\Adslight\Helper' in method 'listingValid'.
                  Open

                      $helper = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 modifyAdsS uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                  Open

                      } else {
                          $helper->redirect('admin/validate_ads.php', 1, _AM_ADSLIGHT_UPGRADEFAILED);
                      }
                  Severity: Minor
                  Found in admin/validate_ads.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 '$xoopsModule'.
                  Open

                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$myts'.
                  Open

                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$admin_lang'.
                  Open

                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$xoopsModule'.
                  Open

                      global $xoopsDB, $xoopsConfig, $xoopsModule, $myts, $meta, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$xoopsModule'.
                  Open

                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$admin_lang'.
                  Open

                      global $xoopsDB, $myts, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$myts'.
                  Open

                      global $xoopsDB, $myts, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$admin_lang'.
                  Open

                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$cod_img'.
                  Open

                              while ([$cod_img, $pic_lid, $uid_owner, $url] = $xoopsDB->fetchRow($resultp)) {
                  Severity: Minor
                  Found in admin/validate_ads.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 '$mytree'.
                  Open

                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 '$pic_lid'.
                  Open

                              while ([$cod_img, $pic_lid, $uid_owner, $url] = $xoopsDB->fetchRow($resultp)) {
                  Severity: Minor
                  Found in admin/validate_ads.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 parameters such as '$photo'.
                  Open

                  function listingDel($lid, $photo): void
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  UnusedFormalParameter

                  Since: 0.2

                  Avoid passing parameters to methods or constructors and then not using those parameters.

                  Example

                  class Foo
                  {
                      private function bar($howdy)
                      {
                          // $howdy is not used
                      }
                  }

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

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

                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$valid'.
                  Open

                      while ([$lid, $cid, $title, $status, $expire, $type, $desctext, $tel, $price, $typeprice, $typecondition, $date_created, $email, $submitter, $town, $country, $contactby, $premium, $valid, $photo] = $xoopsDB->fetchRow(
                  Severity: Minor
                  Found in admin/validate_ads.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 '$admin_lang'.
                  Open

                      global $xoopsDB, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$admin_lang'.
                  Open

                      global $xoopsDB, $xoopsConfig, $xoopsModule, $myts, $meta, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 '$color'.
                  Open

                              $color = is_int($rank / 2) ? '#ffffff' : 'head';
                  Severity: Minor
                  Found in admin/validate_ads.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 '$uid_owner'.
                  Open

                              while ([$cod_img, $pic_lid, $uid_owner, $url] = $xoopsDB->fetchRow($resultp)) {
                  Severity: Minor
                  Found in admin/validate_ads.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 parameters such as '$date_created'.
                  Open

                      $date_created,
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  UnusedFormalParameter

                  Since: 0.2

                  Avoid passing parameters to methods or constructors and then not using those parameters.

                  Example

                  class Foo
                  {
                      private function bar($howdy)
                      {
                          // $howdy is not used
                      }
                  }

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

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

                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                  Severity: Minor
                  Found in admin/validate_ads.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 listingDel($lid, $photo): void
                  {
                      global $xoopsDB, $admin_lang;
                      $helper  = Helper::getInstance();
                      $lid     = (int)$lid;
                  Severity: Major
                  Found in admin/validate_ads.php and 1 other location - About 1 day to fix
                  admin/view_ads.php on lines 647..680

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

                  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

                  switch ($op) {
                      case 'IndexView':
                          indexView($lid);
                          break;
                      case 'ListingDel':
                  Severity: Major
                  Found in admin/validate_ads.php and 1 other location - About 6 hrs to fix
                  admin/view_ads.php on lines 844..905

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

                  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 "<table><tr class='head' border='1'>
                              <td>" . _AM_ADSLIGHT_NUMANN . " </td><td>{$lid} &nbsp;&nbsp;&nbsp;&nbsp;   " . _AM_ADSLIGHT_ADDED_ON . " &nbsp;&nbsp;&nbsp;&nbsp; {$date2}</td>
                              </tr><tr class='odd' border='1'>
                          <td>" . _AM_ADSLIGHT_SENDBY . " </td><td>{$submitter}</td>
                              </tr><tr class='head' border='1'>
                  Severity: Major
                  Found in admin/validate_ads.php and 1 other location - About 2 hrs to fix
                  admin/view_ads.php on lines 252..266

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

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

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

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

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

                  Refactorings

                  Further Reading

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

                          echo "<table class='bnone'><tr class='head' border='1'>
                              <td>" . _AM_ADSLIGHT_NUMANN . " </td><td>{$lid} &nbsp;" . _AM_ADSLIGHT_ADDED_ON . "&nbsp; {$date2}</td>
                              </tr><tr class='head' border='1'>
                              <td>" . _AM_ADSLIGHT_SENDBY . " </td><td>{$submitter}</td>
                              </tr><tr class='head' border='1'>
                  Severity: Major
                  Found in admin/validate_ads.php and 2 other locations - About 1 hr to fix
                  admin/modify_ads.php on lines 181..193
                  admin/view_ads.php on lines 416..429

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

                  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

                  The parameter $date_created is not named in camelCase.
                  Open

                  function modifyAdsS(
                      $lid,
                      $cat,
                      $title,
                      $status,
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  CamelCaseParameterName

                  Since: 0.2

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

                  Example

                  class ClassName {
                      public function doSomething($user_name) {
                      }
                  }

                  Source

                  The parameter $date_created is not named in camelCase.
                  Open

                  function listingValid(
                      $lid,
                      $cat,
                      $title,
                      $status,
                  Severity: Minor
                  Found in admin/validate_ads.php by phpmd

                  CamelCaseParameterName

                  Since: 0.2

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

                  Example

                  class ClassName {
                      public function doSomething($user_name) {
                      }
                  }

                  Source

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

                  <?php declare(strict_types=1);
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  There must be one USE keyword per declaration
                  Open

                  use XoopsModules\Adslight\{
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  There must be one blank line after the last USE statement; 0 found;
                  Open

                  use XoopsModules\Adslight\{
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 171 characters
                  Open

                          echo "<span style='color:#00B4C4;'><b>" . _AM_ADSLIGHT_THEREIS . "</b></span> <b>{$numrows}</b> <span style='color:#00B4C4;'>" . _AM_ADSLIGHT_WAIT . '</b></span>';
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 129 characters
                  Open

                          echo "<img src='../assets/images/admin/search_button_green_32.png' border=0 alt=\"._AM_ADSLIGHT_RELEASEOK.\" ></td><td>";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 129 characters
                  Open

                              <td class='head'>" . _AM_ADSLIGHT_STATUS . "</td><td class='head'><input type=\"radio\" name=\"status\" value=\"0\"";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 202 characters
                  Open

                          echo "<tr class='head' border='1'><td>" . _AM_ADSLIGHT_PRICE2 . " </td><td><input type=\"text\" name=\"price\" size=\"20\" value=\"{$price}\"> " . $helper->getConfig('adslight_currency_symbol');
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 135 characters
                  Open

                          echo "<tr><td class='head'>" . _AM_ADSLIGHT_STATUS . "</td><td class='head'><input type=\"radio\" name=\"status\" value=\"0\"";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 441 characters
                  Open

                                . " SET cid='{$cat}', title='{$title}', status='{$status}', expire='{$expire}', type='{$type}', desctext='{$desctext}', tel='{$tel}', price='{$price}', typeprice='{$typeprice}', typecondition='{$typecondition}', date_created='{$date_created}', email='{$email}', submitter='{$submitter}', town='{$town}', country='{$country}', contactby='{$contactby}', premium='{$premium}', valid='{$valid}', photo='{$photo}' WHERE lid={$lid}";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 279 characters
                  Open

                      $sql     = 'SELECT lid, cid, title, status, expire, type, desctext, tel, price, typeprice, typecondition, date_created, email, submitter, town, country, contactby, premium, photo FROM ' . $xoopsDB->prefix('adslight_listing') . " WHERE valid='No' AND lid='" . (int)$lid . "'";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 124 characters
                  Open

                              <td>" . _AM_ADSLIGHT_EMAIL . " </td><td><input type=\"text\" name=\"email\" size=\"40\" value=\"{$email}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 125 characters
                  Open

                              <td>" . _AM_ADSLIGHT_PHOTO1 . " </td><td><input type=\"text\" name=\"photo\" size=\"50\" value=\"{$photo}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 270 characters
                  Open

                      $sql     = 'SELECT lid, cid, title, status, expire, type, desctext, tel, price, typeprice, typecondition, date_created, email, submitter, town, country, contactby, premium, photo, usid FROM ' . $xoopsDB->prefix('adslight_listing') . " WHERE valid='no' ORDER BY lid";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 217 characters
                  Open

                                  $photo3 = "<a href=\"index.php?op=IndexView&lid={$lid}\"><img class=\"thumb\" src=\"" . XOOPS_URL . "/modules/adslight/assets/images/nophoto.jpg\" align=\"left\" width=\"100px\" alt=\"{$title}\"></a>";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 147 characters
                  Open

                          echo "<table width='100%' border='0' cellspacing='1' cellpadding='8' style='border: 2px solid #DFE0E0;'><tr class='bg4'><td valign='top'>";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 124 characters
                  Open

                             <td>" . _AM_ADSLIGHT_TITLE2 . " </td><td><input type=\"text\" name=\"title\" size=\"40\" value=\"{$title}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 128 characters
                  Open

                             <td>" . _AM_ADSLIGHT_PREMIUM . " </td><td><input type=\"text\" name=\"premium\" size=\"3\" value=\"{$premium}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 224 characters
                  Open

                          while ([$lid, $cid, $title, $status, $expire, $type, $desctext, $tel, $price, $typeprice, $typecondition, $date_created, $email, $submitter, $town, $country, $contactby, $premium, $photo, $usid] = $xoopsDB->fetchRow(
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 158 characters
                  Open

                              echo "<td class='even width20'><b>{$title}</b><br><br>{$nom_type}<br>{$price} {$helper->getConfig('adslight_currency_symbol') } {$nom_price}<br>";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 123 characters
                  Open

                          <td>" . _AM_ADSLIGHT_EXPIRE . " </td><td><input type=\"text\" name=\"expire\" size=\"40\" value=\"{$expire}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 125 characters
                  Open

                          <td>" . _AM_ADSLIGHT_PREMIUM . " </td><td><input type=\"text\" name=\"premium\" size=\"3\" value=\"{$premium}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 123 characters
                  Open

                      echo '<a href="map.php">' . _AM_ADSLIGHT_GESTCAT . '</a> | <a href="../index.php">' . _AM_ADSLIGHT_ACCESMYANN . '</a>';
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 174 characters
                  Open

                      $sql     = 'SELECT p.url FROM ' . $xoopsDB->prefix('adslight_listing') . ' l LEFT JOIN ' . $xoopsDB->prefix('adslight_pictures') . " p ON l.lid=p.lid WHERE l.lid={$lid}";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 125 characters
                  Open

                              <td>" . _AM_ADSLIGHT_PHOTO1 . " </td><td><input type=\"text\" name=\"photo\" size=\"40\" value=\"{$photo}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 439 characters
                  Open

                                       . " SET cid='{$cat}', title='{$title}', status='{$status}', expire='{$expire}', type='{$type}', desctext='{$desctext}', tel='{$tel}', price='{$price}', typeprice='{$typeprice}', typecondition='{$typecondition}', date_created='{$now}', email='{$email}', submitter='{$submitter}', town='{$town}', country='{$country}', contactby='{$contactby}', premium='{$premium}', valid='{$valid}', photo='{$photo}' WHERE lid={$lid}";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 143 characters
                  Open

                              /*        $sql = "select nom_condition from ".$xoopsDB->prefix('adslight_condition')." where id_condition=".(int)$typecondition."";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 121 characters
                  Open

                          <td>" . _AM_ADSLIGHT_TITLE2 . " </td><td><input type=\"text\" name=\"title\" size=\"40\" value=\"{$title}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 126 characters
                  Open

                             <td>" . _AM_ADSLIGHT_EXPIRE . " </td><td><input type=\"text\" name=\"expire\" size=\"40\" value=\"{$expire}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 454 characters
                  Open

                      //                    . " SET cid='{$cat}', title='{$title}', status='{$status}', expire='{$expire}', type='{$type}', desctext='{$desctext}', tel='{$tel}', price='{$price}', typeprice='{$typeprice}', typecondition='{$typecondition}', date_created='{$date_created}', email='{$email}', submitter='{$submitter}', town='{$town}', country='{$country}', contactby='{$contactby}', premium='{$premium}', valid='{$valid}', photo='{$photo}' WHERE lid={$lid}");
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 130 characters
                  Open

                              <td>" . _AM_ADSLIGHT_COUNTRY . " </td><td><input type=\"text\" name=\"country\" size=\"40\" value=\"{$country}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 202 characters
                  Open

                          echo "<tr class='head' border='1'><td>" . _AM_ADSLIGHT_PRICE2 . " </td><td><input type=\"text\" name=\"price\" size=\"20\" value=\"{$price}\"> " . $helper->getConfig('adslight_currency_symbol');
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 124 characters
                  Open

                              $sql     = 'SELECT nom_price FROM ' . $xoopsDB->prefix('adslight_price') . ' WHERE id_price=' . (int)$typeprice;
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 142 characters
                  Open

                      echo "<table width='100%' border='0' cellspacing='1' cellpadding='8' style='border: 2px solid #DFE0E0;'><tr class='bg4'><td class='top'>";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 221 characters
                  Open

                      while ([$lid, $cid, $title, $status, $expire, $type, $desctext, $tel, $price, $typeprice, $typecondition, $date_created, $email, $submitter, $town, $country, $contactby, $premium, $valid, $photo] = $xoopsDB->fetchRow(
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 126 characters
                  Open

                          <td>" . _AM_ADSLIGHT_COUNTRY . " </td><td><input type=\"text\" name=\"country\" size=\"40\" value=\"{$country}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 211 characters
                  Open

                                      $photo3 = "<a href='" . XOOPS_URL . "/modules/adslight/viewads.php?lid={$lid}'><img class=\"thumb\" src=\"{$updir}/thumbs/thumb_{$url}\" align=\"left\" width=\"100px\" alt=\"{$title}\"></a>";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 219 characters
                  Open

                          [$lid, $cid, $title, $status, $expire, $type, $desctext, $tel, $price, $typeprice, $typecondition, $date_created, $email, $submitter, $town, $country, $contactby, $premium, $photo] = $xoopsDB->fetchRow($result);
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 263 characters
                  Open

                              echo "<tr><th class='left'>" . _AM_ADSLIGHT_LID . ": {$lid}</th><th class='left'>{$photo4} " . _AM_ADSLIGHT_NBR_PHOTO . "</th><th align='left'>" . _AM_ADSLIGHT_TITLE . ":</th><th align='left'>" . _AM_ADSLIGHT_DESC . "</th><th align='left'></th></tr>";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 155 characters
                  Open

                              <td>" . _AM_ADSLIGHT_NUMANN . " </td><td>{$lid} &nbsp;&nbsp;&nbsp;&nbsp;   " . _AM_ADSLIGHT_ADDED_ON . " &nbsp;&nbsp;&nbsp;&nbsp; {$date2}</td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 131 characters
                  Open

                          $sql     = 'SELECT nom_condition, id_condition FROM ' . $xoopsDB->prefix('adslight_condition') . ' ORDER BY nom_condition';
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 214 characters
                  Open

                              $sql           = 'SELECT cod_img, lid, uid_owner, url FROM ' . $xoopsDB->prefix('adslight_pictures') . ' WHERE  uid_owner=' . (int)$usid . ' AND lid=' . (int)$lid . ' ORDER BY date_created ASC LIMIT 1';
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 121 characters
                  Open

                              <td>" . _AM_ADSLIGHT_TOWN . " </td><td><input type=\"text\" name=\"town\" size=\"40\" value=\"{$town}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 132 characters
                  Open

                          <td>" . _AM_ADSLIGHT_CONTACTBY . " </td><td><input type=\"text\" name=\"contactby\" size=\"40\" value=\"{$contactby}\"></td>
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  Line exceeds 120 characters; contains 257 characters
                  Open

                      $sql    = 'SELECT lid, cid, title, status, expire, type, desctext, tel, price, typeprice, typecondition, date_created, email, submitter, town, country, contactby, premium, valid, photo FROM ' . $xoopsDB->prefix('adslight_listing') . " WHERE lid={$lid}";
                  Severity: Minor
                  Found in admin/validate_ads.php by phpcodesniffer

                  The variable $photo_thumb_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_resized_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_thumb_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_type is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_condition is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_condition is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_resized_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_thumb_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_type is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_condition is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_resized_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $wysiwyg_text_area is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $admin_lang is not named in camelCase.
                  Open

                  function modifyAdsS(
                      $lid,
                      $cat,
                      $title,
                      $status,
                  Severity: Minor
                  Found in admin/validate_ads.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 $admin_lang is not named in camelCase.
                  Open

                  function listingDel($lid, $photo): void
                  {
                      global $xoopsDB, $admin_lang;
                      $helper  = Helper::getInstance();
                      $lid     = (int)$lid;
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_resized_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_resized_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_resized_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $cod_img is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $pic_lid is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_condition is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_condition is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_condition is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $wysiwyg_text_area is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $admin_lang is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_thumb_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_type is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_type is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_type is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_thumb_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $uid_owner is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $wysiwyg_text_area is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_type is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_type is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $admin_lang is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $admin_lang is not named in camelCase.
                  Open

                  function listingValid(
                      $lid,
                      $cat,
                      $title,
                      $status,
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_type is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_type is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_type is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_resized_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_thumb_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $wysiwyg_text_area is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_thumb_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_type is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $date_created is not named in camelCase.
                  Open

                  function modifyAdsS(
                      $lid,
                      $cat,
                      $title,
                      $status,
                  Severity: Minor
                  Found in admin/validate_ads.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 $admin_lang is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_condition is not named in camelCase.
                  Open

                  function indexView($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_thumb_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $photo_resized_dir is not named in camelCase.
                  Open

                  function index(): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $helper = Helper::getInstance();
                      $mytree = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                  Severity: Minor
                  Found in admin/validate_ads.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 $nom_condition is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_condition is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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 $id_price is not named in camelCase.
                  Open

                  function modifyAds($lid): void
                  {
                      global $xoopsDB, $xoopsModule, $myts, $desctext, $admin_lang;
                      $mytree        = new Tree($xoopsDB->prefix('adslight_categories'), 'cid', 'pid');
                      $helper        = Helper::getInstance();
                  Severity: Minor
                  Found in admin/validate_ads.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