mambax7/alumni-26x

View on GitHub
class/form/search.php

Summary

Maintainability
B
4 hrs
Test Coverage

Method alumni_getSearchFrom has 64 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
    {
        $xoops  = Xoops::getInstance();
        $alumni = Alumni::getInstance();
        // create form
Severity: Major
Found in class/form/search.php - About 2 hrs to fix

    Function alumni_getSearchFrom has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
    Open

        public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
        {
            $xoops  = Xoops::getInstance();
            $alumni = Alumni::getInstance();
            // create form
    Severity: Minor
    Found in class/form/search.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 alumni_getSearchFrom has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

        public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
    Severity: Minor
    Found in class/form/search.php - About 35 mins to fix

      The method alumni_getSearchFrom() has a Cyclomatic Complexity of 10. The configured cyclomatic complexity threshold is 10.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 class AlumniSearchForm has a coupling between objects value of 17. Consider to reduce the number of dependencies under 13.
      Open

      class AlumniSearchForm extends XoopsThemeForm
      {
          /**
           * We are not using this for objects but we need to override the constructor
           * @param null $obj
      Severity: Minor
      Found in class/form/search.php by phpmd

      CouplingBetweenObjects

      Since: 1.1.0

      A class with too many dependencies has negative impacts on several quality aspects of a class. This includes quality criteria like stability, maintainability and understandability

      Example

      class Foo {
          /**
           * @var \foo\bar\X
           */
          private $x = null;
      
          /**
           * @var \foo\bar\Y
           */
          private $y = null;
      
          /**
           * @var \foo\bar\Z
           */
          private $z = null;
      
          public function setFoo(\Foo $foo) {}
          public function setBar(\Bar $bar) {}
          public function setBaz(\Baz $baz) {}
      
          /**
           * @return \SplObjectStorage
           * @throws \OutOfRangeException
           * @throws \InvalidArgumentException
           * @throws \ErrorException
           */
          public function process(\Iterator $it) {}
      
          // ...
      }

      Source https://phpmd.org/rules/design.html#couplingbetweenobjects

      Missing class import via use statement (line '95', column '34').
      Open

                  $mods_checkbox = new XoopsFormCheckBox(XoopsLocale::SEARCH_IN, 'mids[]', $mids);
      Severity: Minor
      Found in class/form/search.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 '107', column '36').
      Open

                      $criteria->add(new Criteria('mid', '(' . implode(',', $available_modules) . ')', 'IN'));
      Severity: Minor
      Found in class/form/search.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 '125', column '31').
      Open

              $this->addElement(new XoopsFormButton('', 'submit', XoopsLocale::SEARCH, 'submit'));
      Severity: Minor
      Found in class/form/search.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 '121', column '35').
      Open

                  $this->addElement(new XoopsFormLabel(XoopsLocale::SEARCH_RULE, sprintf(XoopsLocale::EF_KEYWORDS_MUST_BE_GREATER_THAN, $search->getConfig('keyword_min'))));
      Severity: Minor
      Found in class/form/search.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 '58', column '28').
      Open

              $type_select = new XoopsFormSelect(XoopsLocale::TYPE, 'andor', $andor);
      Severity: Minor
      Found in class/form/search.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 '97', column '34').
      Open

                  $mods_checkbox = new XoopsFormCheckBox(XoopsLocale::SEARCH_IN, 'mids[]', $mid);
      Severity: Minor
      Found in class/form/search.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 '75', column '28').
      Open

              $criteria->add(new Criteria('cid', '(' . implode(', ', $alumni_ids) . ')', 'IN'));
      Severity: Minor
      Found in class/form/search.php by phpmd

      MissingImport

      Since: 2.7.0

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

      Example

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

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

      Missing class import via use statement (line '104', column '29').
      Open

                  $criteria = new CriteriaCompo();
      Severity: Minor
      Found in class/form/search.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 '105', column '32').
      Open

                  $criteria->add(new Criteria('dirname', '(\'' . implode('\',\'', array_keys($available_plugins)) . '\')', 'IN'));
      Severity: Minor
      Found in class/form/search.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 '74', column '27').
      Open

              $criteria   = new CriteriaCompo();
      Severity: Minor
      Found in class/form/search.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 '57', column '31').
      Open

              $this->addElement(new XoopsFormText(XoopsLocale::KEYWORDS, 'query', 30, 255, htmlspecialchars(stripslashes(implode(' ', $queries)), ENT_QUOTES)), true);
      Severity: Minor
      Found in class/form/search.php by phpmd

      MissingImport

      Since: 2.7.0

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

      Example

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

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

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

              $this->addElement(new XoopsFormHidden('action', 'results'));
      Severity: Minor
      Found in class/form/search.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 '87', column '32').
      Open

              $category_select = new XoopsFormSelect(AlumniLocale::L_ALUMNI_CATEGORIES, 'by_cat', $by_cat);
      Severity: Minor
      Found in class/form/search.php by phpmd

      MissingImport

      Since: 2.7.0

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

      Example

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

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

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

              $this->addElement(new XoopsFormHiddenToken('id'));
      Severity: Minor
      Found in class/form/search.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 '\Xoops\Core\Request' in method 'alumni_getSearchFrom'.
      Open

              $by_cat = Request::getInt('by_cat', 0);
      Severity: Minor
      Found in class/form/search.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 'Alumni' in method 'alumni_getSearchFrom'.
      Open

              $alumni = Alumni::getInstance();
      Severity: Minor
      Found in class/form/search.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 'Search' in method 'alumni_getSearchFrom'.
      Open

              $search            = Search::getInstance();
      Severity: Minor
      Found in class/form/search.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 'Xoops\Module\Plugin' in method 'alumni_getSearchFrom'.
      Open

                  $available_plugins = Xoops\Module\Plugin::getPlugins('search');
      Severity: Minor
      Found in class/form/search.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 alumni_getSearchFrom uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

              } else {
                  $mods_checkbox = new XoopsFormCheckBox(XoopsLocale::SEARCH_IN, 'mids[]', $mid);
              }
      Severity: Minor
      Found in class/form/search.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 'Xoops' in method 'alumni_getSearchFrom'.
      Open

              $xoops  = Xoops::getInstance();
      Severity: Minor
      Found in class/form/search.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 alumni_getSearchFrom uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
      Open

              } else {
                  /* @var $module XoopsModule */
                  $module_array = [];
                  foreach ($modules as $mid => $module) {
                      $module_array[$mid] = $module->getVar('name');
      Severity: Minor
      Found in class/form/search.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 parameters such as '$obj'.
      Open

          public function __construct($obj = null)
      Severity: Minor
      Found in class/form/search.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 parameters such as '$bycat'.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
      Severity: Minor
      Found in class/form/search.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 '$pid'.
      Open

                  $pid   = $category_arr[$i]->getVar('pid');
      Severity: Minor
      Found in class/form/search.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

      Each class must be in a namespace of at least one level (a top-level vendor name)
      Open

      class AlumniSearchForm extends XoopsThemeForm
      Severity: Minor
      Found in class/form/search.php by phpcodesniffer

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

      <?php
      Severity: Minor
      Found in class/form/search.php by phpcodesniffer

      Method name "AlumniSearchForm::alumni_getSearchFrom" is not in camel caps format
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
      Severity: Minor
      Found in class/form/search.php by phpcodesniffer

      Line exceeds 120 characters; contains 160 characters
      Open

              $this->addElement(new XoopsFormText(XoopsLocale::KEYWORDS, 'query', 30, 255, htmlspecialchars(stripslashes(implode(' ', $queries)), ENT_QUOTES)), true);
      Severity: Minor
      Found in class/form/search.php by phpcodesniffer

      Line exceeds 120 characters; contains 167 characters
      Open

                  $this->addElement(new XoopsFormLabel(XoopsLocale::SEARCH_RULE, sprintf(XoopsLocale::EF_KEYWORDS_MUST_BE_GREATER_THAN, $search->getConfig('keyword_min'))));
      Severity: Minor
      Found in class/form/search.php by phpcodesniffer

      Line exceeds 120 characters; contains 124 characters
      Open

                  $criteria->add(new Criteria('dirname', '(\'' . implode('\',\'', array_keys($available_plugins)) . '\')', 'IN'));
      Severity: Minor
      Found in class/form/search.php by phpcodesniffer

      The variable $category_arr is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $category_arr is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $mods_checkbox is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $gperm_handler is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $available_modules is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $available_modules is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.php by phpmd

      CamelCaseVariableName

      Since: 0.2

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

      Example

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

      Source

      The variable $module_array is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $category_select is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $available_plugins is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $category_arr is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $mods_checkbox is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $category_arr is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $category_select is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.php by phpmd

      CamelCaseVariableName

      Since: 0.2

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

      Example

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

      Source

      The variable $module_array is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $type_select is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $category_select is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $mods_checkbox is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $type_select is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $by_cat is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.php by phpmd

      CamelCaseVariableName

      Since: 0.2

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

      Example

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

      Source

      The variable $module_id is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.php by phpmd

      CamelCaseVariableName

      Since: 0.2

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

      Example

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

      Source

      The variable $module_array is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $available_modules is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $available_plugins is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $type_select is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $mods_checkbox is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $gperm_handler is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $available_modules is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $alumni_ids is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $category_arr is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.php by phpmd

      CamelCaseVariableName

      Since: 0.2

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

      Example

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

      Source

      The variable $module_id is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $alumni_ids is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $by_cat is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $category_select is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 $mods_checkbox is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.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 method alumni_getSearchFrom is not named in camelCase.
      Open

          public function alumni_getSearchFrom($andor, $queries, $mids, $mid, $bycat)
          {
              $xoops  = Xoops::getInstance();
              $alumni = Alumni::getInstance();
              // create form
      Severity: Minor
      Found in class/form/search.php by phpmd

      CamelCaseMethodName

      Since: 0.2

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

      Example

      class ClassName {
          public function get_name() {
          }
      }

      Source

      There are no issues that match your filters.

      Category
      Status