mambax7/songlist

View on GitHub
class/Field.php

Summary

Maintainability
F
1 wk
Test Coverage

getEditElement accesses the super-global variable $GLOBALS.
Open

    public function getEditElement($user, $profile)
    {
        $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
        if (null === $value) {
            $value = $this->getVar('field_default');
Severity: Minor
Found in class/Field.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

getEditElement accesses the super-global variable $GLOBALS.
Open

    public function getEditElement($user, $profile)
    {
        $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
        if (null === $value) {
            $value = $this->getVar('field_default');
Severity: Minor
Found in class/Field.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

getEditElement accesses the super-global variable $GLOBALS.
Open

    public function getEditElement($user, $profile)
    {
        $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
        if (null === $value) {
            $value = $this->getVar('field_default');
Severity: Minor
Found in class/Field.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

getEditElement accesses the super-global variable $GLOBALS.
Open

    public function getEditElement($user, $profile)
    {
        $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
        if (null === $value) {
            $value = $this->getVar('field_default');
Severity: Minor
Found in class/Field.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

getEditElement accesses the super-global variable $GLOBALS.
Open

    public function getEditElement($user, $profile)
    {
        $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
        if (null === $value) {
            $value = $this->getVar('field_default');
Severity: Minor
Found in class/Field.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

getEditElement accesses the super-global variable $GLOBALS.
Open

    public function getEditElement($user, $profile)
    {
        $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
        if (null === $value) {
            $value = $this->getVar('field_default');
Severity: Minor
Found in class/Field.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

getSearchElement accesses the super-global variable $GLOBALS.
Open

    public function getSearchElement()
    {
        $caption = $this->getVar('field_title');
        $caption = \defined($caption) ? \constant($caption) : $caption;
        $name    = $this->getVar('field_name', 'e');
Severity: Minor
Found in class/Field.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

getOutputValue accesses the super-global variable $GLOBALS.
Open

    public function getOutputValue($user, $profile)
    {
        \xoops_loadLanguage('modinfo', 'objects');

        $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name')) : $profile->getVar($this->getVar('field_name'));
Severity: Minor
Found in class/Field.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

getSearchElement accesses the super-global variable $GLOBALS.
Open

    public function getSearchElement()
    {
        $caption = $this->getVar('field_title');
        $caption = \defined($caption) ? \constant($caption) : $caption;
        $name    = $this->getVar('field_name', 'e');
Severity: Minor
Found in class/Field.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

getSearchElement accesses the super-global variable $GLOBALS.
Open

    public function getSearchElement()
    {
        $caption = $this->getVar('field_title');
        $caption = \defined($caption) ? \constant($caption) : $caption;
        $name    = $this->getVar('field_name', 'e');
Severity: Minor
Found in class/Field.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 Field.php has 415 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php declare(strict_types=1);

namespace XoopsModules\Songlist;

use function base64_decode;
Severity: Minor
Found in class/Field.php - About 5 hrs to fix

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

        public function getEditElement($user, $profile)
        {
            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
            if (null === $value) {
                $value = $this->getVar('field_default');
    Severity: Minor
    Found in class/Field.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 getSearchElement has a Cognitive Complexity of 36 (exceeds 5 allowed). Consider refactoring.
    Open

        public function getSearchElement()
        {
            $caption = $this->getVar('field_title');
            $caption = \defined($caption) ? \constant($caption) : $caption;
            $name    = $this->getVar('field_name', 'e');
    Severity: Minor
    Found in class/Field.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 getEditElement has 123 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function getEditElement($user, $profile)
        {
            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
            if (null === $value) {
                $value = $this->getVar('field_default');
    Severity: Major
    Found in class/Field.php - About 4 hrs to fix

      Method getSearchElement has 114 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function getSearchElement()
          {
              $caption = $this->getVar('field_title');
              $caption = \defined($caption) ? \constant($caption) : $caption;
              $name    = $this->getVar('field_name', 'e');
      Severity: Major
      Found in class/Field.php - About 4 hrs to fix

        The class Field has an overall complexity of 141 which is very high. The configured complexity threshold is 50.
        Open

        class Field extends \XoopsObject
        {
            public $field_id;
            public $cids;
            public $field_type;
        Severity: Minor
        Found in class/Field.php by phpmd

        Method getOutputValue has 71 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getOutputValue($user, $profile)
            {
                \xoops_loadLanguage('modinfo', 'objects');
        
                $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name')) : $profile->getVar($this->getVar('field_name'));
        Severity: Major
        Found in class/Field.php - About 2 hrs to fix

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

              public function getOutputValue($user, $profile)
              {
                  \xoops_loadLanguage('modinfo', 'objects');
          
                  $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name')) : $profile->getVar($this->getVar('field_name'));
          Severity: Minor
          Found in class/Field.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

          The class Field has 16 fields. Consider redesigning Field to keep the number of fields under 15.
          Open

          class Field extends \XoopsObject
          {
              public $field_id;
              public $cids;
              public $field_type;
          Severity: Minor
          Found in class/Field.php by phpmd

          TooManyFields

          Since: 0.1

          Classes that have too many fields could be redesigned to have fewer fields, possibly through some nested object grouping of some of the information. For example, a class with city/state/zip fields could instead have one Address field.

          Example

          class Person {
             protected $one;
             private $two;
             private $three;
             [... many more fields ...]
          }

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

          Method getValueForSave has 29 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              public function getValueForSave($value)
              {
                  switch ($this->getVar('field_type')) {
                      default:
                      case 'textbox':
          Severity: Minor
          Found in class/Field.php - About 1 hr to fix

            Avoid too many return statements within this method.
            Open

                            return $value;
            Severity: Major
            Found in class/Field.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                              return \str_replace('-', '/', $value);
              Severity: Major
              Found in class/Field.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                                return $value;
                Severity: Major
                Found in class/Field.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                                  return \formatTimestamp($value, 's');
                  Severity: Major
                  Found in class/Field.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                    return $value = \_MI_SONGLIST_DATENOTSET;
                    Severity: Major
                    Found in class/Field.php - About 30 mins to fix

                      Avoid too many return statements within this method.
                      Open

                                      return '';
                      Severity: Major
                      Found in class/Field.php - About 30 mins to fix

                        Avoid too many return statements within this method.
                        Open

                                        return $ret;
                        Severity: Major
                        Found in class/Field.php - About 30 mins to fix

                          Avoid too many return statements within this method.
                          Open

                                              return \formatTimestamp($value, 'm');
                          Severity: Major
                          Found in class/Field.php - About 30 mins to fix

                            Avoid too many return statements within this method.
                            Open

                                            return $user_rankimage . $userrank['title'];
                            Severity: Major
                            Found in class/Field.php - About 30 mins to fix

                              Avoid too many return statements within this method.
                              Open

                                              return $value ? \_YES : \_NO;
                              Severity: Major
                              Found in class/Field.php - About 30 mins to fix

                                Avoid too many return statements within this method.
                                Open

                                                return $value;
                                Severity: Major
                                Found in class/Field.php - About 30 mins to fix

                                  Avoid too many return statements within this method.
                                  Open

                                                  return $timezones[\str_replace('.0', '', $value)];
                                  Severity: Major
                                  Found in class/Field.php - About 30 mins to fix

                                    The method getEditElement() has 133 lines of code. Current threshold is set to 100. Avoid really long methods.
                                    Open

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    The method getEditElement() has an NPath complexity of 3552. The configured NPath complexity threshold is 200.
                                    Open

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.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 method getSearchElement() has an NPath complexity of 888. The configured NPath complexity threshold is 200.
                                    Open

                                        public function getSearchElement()
                                        {
                                            $caption = $this->getVar('field_title');
                                            $caption = \defined($caption) ? \constant($caption) : $caption;
                                            $name    = $this->getVar('field_name', 'e');
                                    Severity: Minor
                                    Found in class/Field.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 method getSearchElement() has 125 lines of code. Current threshold is set to 100. Avoid really long methods.
                                    Open

                                        public function getSearchElement()
                                        {
                                            $caption = $this->getVar('field_title');
                                            $caption = \defined($caption) ? \constant($caption) : $caption;
                                            $name    = $this->getVar('field_name', 'e');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

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

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.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 method getOutputValue() has a Cyclomatic Complexity of 35. The configured cyclomatic complexity threshold is 10.
                                    Open

                                        public function getOutputValue($user, $profile)
                                        {
                                            \xoops_loadLanguage('modinfo', 'objects');
                                    
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name')) : $profile->getVar($this->getVar('field_name'));
                                    Severity: Minor
                                    Found in class/Field.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 method getValueForSave() has a Cyclomatic Complexity of 20. The configured cyclomatic complexity threshold is 10.
                                    Open

                                        public function getValueForSave($value)
                                        {
                                            switch ($this->getVar('field_type')) {
                                                default:
                                                case 'textbox':
                                    Severity: Minor
                                    Found in class/Field.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 method getSearchElement() has a Cyclomatic Complexity of 37. The configured cyclomatic complexity threshold is 10.
                                    Open

                                        public function getSearchElement()
                                        {
                                            $caption = $this->getVar('field_title');
                                            $caption = \defined($caption) ? \constant($caption) : $caption;
                                            $name    = $this->getVar('field_name', 'e');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CyclomaticComplexity

                                    Since: 0.1

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

                                    Example

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

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

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

                                                    $editor_config['name']   = $name;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $editor_config['value']  = $value;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $editor_config['editor'] = $GLOBALS['songlistModuleConfig']['editor'];
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormRadio($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormText($caption, $name, 35, 255, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormText($caption, $name, 35, 255, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormCheckBox($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelectLang($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $editor_config['width']  = $GLOBALS['songlistModuleConfig']['editor_width'];
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormTextDateSelect($caption, $name, 15, \str_replace('-', '/', $value));
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormLabel($caption, $this->getOutputValue($user, $profile));
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $editor_config['height'] = $GLOBALS['songlistModuleConfig']['editor_height'];
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelectGroup($caption, $name, true, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormTextArea($caption, $name, $value, 4, 30);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormRadioYN($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new XoopsFormDatetime($caption, $name, 15, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormText($caption, $name, 35, $this->getVar('field_maxlength'), $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelectTimezone($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormLabel($caption, $this->getOutputValue($user, $profile));
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormTextDateSelect($caption, $name, 15, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelect($caption, $name, $value, 1, $options[0]);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element                 = new \XoopsFormEditor($caption, $name, $editor_config);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelect($caption, $name, $value, 5, true);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

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

                                                    $element = new \XoopsFormSelectGroup($caption, $name, true, $value, 5, true);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UndefinedVariable

                                    Since: 2.8.0

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

                                    Example

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

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

                                    The class Field has a coupling between objects value of 16. Consider to reduce the number of dependencies under 13.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.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 '126', column '32').
                                    Open

                                                    $element = new \XoopsFormDhtmlTextArea($caption, $name, $value, 10, 30);
                                    Severity: Minor
                                    Found in class/Field.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 '117', column '32').
                                    Open

                                                    $element = new \XoopsFormLabel($caption, $this->getOutputValue($user, $profile));
                                    Severity: Minor
                                    Found in class/Field.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 '32').
                                    Open

                                                    $element = new \XoopsFormTextArea($caption, $name, $value, 4, 30);
                                    Severity: Minor
                                    Found in class/Field.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 '120', column '32').
                                    Open

                                                    $element = new \XoopsFormText($caption, $name, 35, $this->getVar('field_maxlength'), $value);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    MissingImport

                                    Since: 2.7.0

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

                                    Example

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

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

                                    The method setVar has a boolean flag argument $not_gpc, which is a certain sign of a Single Responsibility Principle violation.
                                    Open

                                        public function setVar($key, $value, $not_gpc = false): void
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    BooleanArgumentFlag

                                    Since: 1.4.0

                                    A boolean flag argument is a reliable indicator for a violation of the Single Responsibility Principle (SRP). You can fix this problem by extracting the logic in the boolean flag into its own class or method.

                                    Example

                                    class Foo {
                                        public function bar($flag = true) {
                                        }
                                    }

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

                                    Missing class import via use statement (line '171', column '32').
                                    Open

                                                    $element = new \XoopsFormSelectGroup($caption, $name, true, $value, 5, true);
                                    Severity: Minor
                                    Found in class/Field.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 '177', column '32').
                                    Open

                                                    $element = new \XoopsFormTextDateSelect($caption, $name, 15, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '256', column '32').
                                    Open

                                                    $element = new \XoopsFormText($caption, $name, 35, $this->getVar('field_maxlength'), $value);
                                    Severity: Minor
                                    Found in class/Field.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 '309', column '32').
                                    Open

                                                    $element = new \XoopsFormTextDateSelect($caption, $name, 15, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '180', column '32').
                                    Open

                                                    $element = new \XoopsFormTextDateSelect($caption, $name, 15, \str_replace('-', '/', $value));
                                    Severity: Minor
                                    Found in class/Field.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 '262', column '32').
                                    Open

                                                    $element = new \XoopsFormText($caption, $name, 35, 255, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '306', column '32').
                                    Open

                                                    $element = new \XoopsFormSelectLang($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '318', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value, 1, $options[0]);
                                    Severity: Minor
                                    Found in class/Field.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 '137', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '189', column '32').
                                    Open

                                                    $element = new \XoopsFormSelectTimezone($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '157', column '32').
                                    Open

                                                    $element = new \XoopsFormRadio($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '293', column '32').
                                    Open

                                                    $element = new \XoopsFormCheckBox($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '259', column '32').
                                    Open

                                                    $element = new \XoopsFormTextArea($caption, $name, $value, 4, 30);
                                    Severity: Minor
                                    Found in class/Field.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 '165', column '32').
                                    Open

                                                    $element = new \XoopsFormRadioYN($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '201', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '285', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value, 5, true);
                                    Severity: Minor
                                    Found in class/Field.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 '321', column '32').
                                    Open

                                                    $element = new \XoopsFormSelectTimezone($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '134', column '48').
                                    Open

                                                    $element                 = new \XoopsFormEditor($caption, $name, $editor_config);
                                    Severity: Minor
                                    Found in class/Field.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 '333', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '193', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '325', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '153', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value, 5, true);
                                    Severity: Minor
                                    Found in class/Field.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 '303', column '32').
                                    Open

                                                    $element = new \XoopsFormSelectGroup($caption, $name, true, $value, 5, true);
                                    Severity: Minor
                                    Found in class/Field.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 '312', column '32').
                                    Open

                                                    $element = new \XoopsFormTextDateSelect($caption, $name, 15, \str_replace('-', '/', $value));
                                    Severity: Minor
                                    Found in class/Field.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 '168', column '32').
                                    Open

                                                    $element = new \XoopsFormSelectGroup($caption, $name, true, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '186', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value, 1, $options[0]);
                                    Severity: Minor
                                    Found in class/Field.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 '253', column '32').
                                    Open

                                                    $element = new \XoopsFormLabel($caption, $this->getOutputValue($user, $profile));
                                    Severity: Minor
                                    Found in class/Field.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 '265', column '32').
                                    Open

                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '282', column '32').
                                    Open

                                                    $element = new \XoopsFormText($caption, $name, 35, 255, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '174', column '32').
                                    Open

                                                    $element = new \XoopsFormSelectLang($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '297', column '32').
                                    Open

                                                    $element = new \XoopsFormRadioYN($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '161', column '32').
                                    Open

                                                    $element = new \XoopsFormCheckBox($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '289', column '32').
                                    Open

                                                    $element = new \XoopsFormRadio($caption, $name, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '300', column '32').
                                    Open

                                                    $element = new \XoopsFormSelectGroup($caption, $name, true, $value);
                                    Severity: Minor
                                    Found in class/Field.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 '\XoopsLists' in method 'getEditElement'.
                                    Open

                                                    $ranks = \XoopsLists::getUserRankList();
                                    Severity: Minor
                                    Found in class/Field.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 '\XoopsLists' in method 'getOutputValue'.
                                    Open

                                                    $timezones = \XoopsLists::getTimeZoneList();
                                    Severity: Minor
                                    Found in class/Field.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 '\XoopsLists' in method 'getSearchElement'.
                                    Open

                                                    $ranks = \XoopsLists::getUserRankList();
                                    Severity: Minor
                                    Found in class/Field.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 getOutputValue uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                                    Open

                                                    } else {
                                                        $value = '';
                                                    }
                                    Severity: Minor
                                    Found in class/Field.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 '$profile'.
                                    Open

                                                    $element = new \XoopsFormLabel($caption, $this->getOutputValue($user, $profile));
                                    Severity: Minor
                                    Found in class/Field.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 '$user'.
                                    Open

                                                    $element = new \XoopsFormLabel($caption, $this->getOutputValue($user, $profile));
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    UnusedLocalVariable

                                    Since: 0.2

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

                                    Example

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

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

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

                                                case 'theme':
                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                                    $element->addOption('0', \_AM_SONGLIST_OBJS_MF_SITEDEFAULT);
                                                    $handle  = \opendir(XOOPS_THEME_PATH . '/');
                                                    $dirlist = [];
                                    Severity: Major
                                    Found in class/Field.php and 1 other location - About 1 day to fix
                                    class/Field.php on lines 200..217

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

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

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

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

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

                                    Refactorings

                                    Further Reading

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

                                                case 'theme':
                                                    $element = new \XoopsFormSelect($caption, $name, $value);
                                                    $element->addOption('0', \_AM_SONGLIST_OBJS_MF_SITEDEFAULT);
                                                    $handle  = \opendir(XOOPS_THEME_PATH . '/');
                                                    $dirlist = [];
                                    Severity: Major
                                    Found in class/Field.php and 1 other location - About 1 day to fix
                                    class/Field.php on lines 332..349

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

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

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

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

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

                                    Refactorings

                                    Further Reading

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

                                                        if (1 == $this->getVar('field_required')) {
                                                            $eltmsg                          = empty($caption) ? \sprintf(\_FORM_ENTER, $name) : \sprintf(\_FORM_ENTER, $caption);
                                                            $eltmsg                          = \str_replace('"', '\"', \stripslashes($eltmsg));
                                                            $element->customValidationCode[] = "\nvar hasSelected = false; var selectBox = myform.{$name};"
                                                                                               . "for (i = 0; i < selectBox.options.length; i++  ) { if ( selectBox.options[i].selected === true && selectBox.options[i].value != '' ) { hasSelected = true; break; } }"
                                    Severity: Major
                                    Found in class/Field.php and 1 other location - About 1 hr to fix
                                    class/Field.php on lines 270..276

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

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

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

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

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

                                    Refactorings

                                    Further Reading

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

                                                        if (1 == $this->getVar('field_required')) {
                                                            $eltmsg                          = empty($caption) ? \sprintf(\_FORM_ENTER, $name) : \sprintf(\_FORM_ENTER, $caption);
                                                            $eltmsg                          = \str_replace('"', '\"', \stripslashes($eltmsg));
                                                            $element->customValidationCode[] = "\nvar hasSelected = false; var selectBox = myform.{$name};"
                                                                                               . "for (i = 0; i < selectBox.options.length; i++  ) { if ( selectBox.options[i].selected === true && selectBox.options[i].value != '' ) { hasSelected = true; break; } }"
                                    Severity: Major
                                    Found in class/Field.php and 1 other location - About 1 hr to fix
                                    class/Field.php on lines 142..148

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

                                    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 property $field_id is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_name is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_default is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_notnull is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_weight is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_title is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_config is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_valuetype is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_type is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_required is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_description is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_show is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_edit is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The parameter $not_gpc is not named in camelCase.
                                    Open

                                        public function setVar($key, $value, $not_gpc = false): void
                                        {
                                            if ('field_options' === $key && \is_array($value)) {
                                                foreach (\array_keys($value) as $idx) {
                                                    $value[$idx] = base64_encode($value[$idx]);
                                    Severity: Minor
                                    Found in class/Field.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 property $field_maxlength is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    The property $field_options is not named in camelCase.
                                    Open

                                    class Field extends \XoopsObject
                                    {
                                        public $field_id;
                                        public $cids;
                                        public $field_type;
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCasePropertyName

                                    Since: 0.2

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

                                    Example

                                    class ClassName {
                                        protected $property_name;
                                    }

                                    Source

                                    Line exceeds 120 characters; contains 149 characters
                                    Open

                                                                                               . "if ( !hasSelected ) { window.alert(\"{$eltmsg}\"); selectBox.focus(); return false; }";
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 140 characters
                                    Open

                                                        if (\is_dir(XOOPS_THEME_PATH . '/' . $file) && !\preg_match('/^[.]{1,2}$/', $file) && 'cvs' !== \mb_strtolower($file)) {
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 162 characters
                                    Open

                                                            if (\file_exists(XOOPS_THEME_PATH . '/' . $file . '/theme.tpl') && \in_array($file, $GLOBALS['xoopsConfig']['theme_set_allowed'], true)) {
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 142 characters
                                    Open

                                                            $eltmsg                          = empty($caption) ? \sprintf(\_FORM_ENTER, $name) : \sprintf(\_FORM_ENTER, $caption);
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 149 characters
                                    Open

                                                                                               . "if ( !hasSelected ) { window.alert(\"{$eltmsg}\"); selectBox.focus(); return false; }";
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 160 characters
                                    Open

                                         * @internal param ObjectsProfile $profile <a href='psi_element://ObjectsProfile'>ObjectsProfile</a> object to edit the value of object to edit the value of
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 228 characters
                                    Open

                                                                                               . "for (i = 0; i < selectBox.options.length; i++  ) { if ( selectBox.options[i].selected === true && selectBox.options[i].value != '' ) { hasSelected = true; break; } }"
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 140 characters
                                    Open

                                                        if (\is_dir(XOOPS_THEME_PATH . '/' . $file) && !\preg_match('/^[.]{1,2}$/', $file) && 'cvs' !== \mb_strtolower($file)) {
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 142 characters
                                    Open

                                         * @internal param XoopsUser $user <a href='psi_element://XoopsUser'>XoopsUser</a> object to edit the value of object to edit the value of
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 157 characters
                                    Open

                                                                $$ret[$key] = \htmlspecialchars(\defined($options[$key]) ? \constant($options[$key]) : $options[$key], \ENT_QUOTES | \ENT_HTML5);
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 142 characters
                                    Open

                                                            $eltmsg                          = empty($caption) ? \sprintf(\_FORM_ENTER, $name) : \sprintf(\_FORM_ENTER, $caption);
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 177 characters
                                    Open

                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name')) : $profile->getVar($this->getVar('field_name'));
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 150 characters
                                    Open

                                                        $value = \htmlspecialchars(\defined($options[$value]) ? \constant($options[$value]) : $options[$value], \ENT_QUOTES | \ENT_HTML5);
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 141 characters
                                    Open

                                                        $user_rankimage = '<img src="' . XOOPS_UPLOAD_URL . '/' . $userrank['image'] . '" alt="' . $userrank['title'] . '"><br>';
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 228 characters
                                    Open

                                                                                               . "for (i = 0; i < selectBox.options.length; i++  ) { if ( selectBox.options[i].selected === true && selectBox.options[i].value != '' ) { hasSelected = true; break; } }"
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 162 characters
                                    Open

                                                            if (\file_exists(XOOPS_THEME_PATH . '/' . $file . '/theme.tpl') && \in_array($file, $GLOBALS['xoopsConfig']['theme_set_allowed'], true)) {
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    Line exceeds 120 characters; contains 187 characters
                                    Open

                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                    Severity: Minor
                                    Found in class/Field.php by phpcodesniffer

                                    The variable $editor_config is not named in camelCase.
                                    Open

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $editor_config is not named in camelCase.
                                    Open

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $editor_config is not named in camelCase.
                                    Open

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $editor_config is not named in camelCase.
                                    Open

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $editor_config is not named in camelCase.
                                    Open

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $not_gpc is not named in camelCase.
                                    Open

                                        public function setVar($key, $value, $not_gpc = false): void
                                        {
                                            if ('field_options' === $key && \is_array($value)) {
                                                foreach (\array_keys($value) as $idx) {
                                                    $value[$idx] = base64_encode($value[$idx]);
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $editor_config is not named in camelCase.
                                    Open

                                        public function getEditElement($user, $profile)
                                        {
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name'), 'e') : $profile->getVar($this->getVar('field_name'), 'e');
                                            if (null === $value) {
                                                $value = $this->getVar('field_default');
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $user_rankimage is not named in camelCase.
                                    Open

                                        public function getOutputValue($user, $profile)
                                        {
                                            \xoops_loadLanguage('modinfo', 'objects');
                                    
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name')) : $profile->getVar($this->getVar('field_name'));
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $user_rankimage is not named in camelCase.
                                    Open

                                        public function getOutputValue($user, $profile)
                                        {
                                            \xoops_loadLanguage('modinfo', 'objects');
                                    
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name')) : $profile->getVar($this->getVar('field_name'));
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

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

                                    Example

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

                                    Source

                                    The variable $user_rankimage is not named in camelCase.
                                    Open

                                        public function getOutputValue($user, $profile)
                                        {
                                            \xoops_loadLanguage('modinfo', 'objects');
                                    
                                            $value = \in_array($this->getVar('field_name'), $this->getPostVars(), true) ? $user->getVar($this->getVar('field_name')) : $profile->getVar($this->getVar('field_name'));
                                    Severity: Minor
                                    Found in class/Field.php by phpmd

                                    CamelCaseVariableName

                                    Since: 0.2

                                    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