core/modules/node/model/NodeModel.php

Summary

Maintainability
F
5 days
Test Coverage

File NodeModel.php has 667 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php

/**
 * @property bool ignoreAccessControl
 */
Severity: Major
Found in core/modules/node/model/NodeModel.php - About 1 day to fix

    NodeModel has 66 functions (exceeds 20 allowed). Consider refactoring.
    Open

    class NodeModel extends Ajde_Model_With_AclI18nRevision
    {
        protected $_autoloadParents = false;
        protected $_displayField = 'title';
        protected $_hasMeta = true;
    Severity: Major
    Found in core/modules/node/model/NodeModel.php - About 1 day to fix

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

      class NodeModel extends Ajde_Model_With_AclI18nRevision
      {
          protected $_autoloadParents = false;
          protected $_displayField = 'title';
          protected $_hasMeta = true;
      Severity: Minor
      Found in core/modules/node/model/NodeModel.php by phpmd

      The class NodeModel has 38 public methods. Consider refactoring NodeModel to keep number of public methods under 10.
      Open

      class NodeModel extends Ajde_Model_With_AclI18nRevision
      {
          protected $_autoloadParents = false;
          protected $_displayField = 'title';
          protected $_hasMeta = true;
      Severity: Minor
      Found in core/modules/node/model/NodeModel.php by phpmd

      TooManyPublicMethods

      Since: 0.1

      A class with too many public methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

      By default it ignores methods starting with 'get' or 'set'.

      Example

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

      The class NodeModel has 42 non-getter- and setter-methods. Consider refactoring NodeModel to keep number of methods under 25.
      Open

      class NodeModel extends Ajde_Model_With_AclI18nRevision
      {
          protected $_autoloadParents = false;
          protected $_displayField = 'title';
          protected $_hasMeta = true;
      Severity: Minor
      Found in core/modules/node/model/NodeModel.php by phpmd

      TooManyMethods

      Since: 0.1

      A class with too many methods is probably a good suspect for refactoring, in order to reduce its complexity and find a way to have more fine grained objects.

      By default it ignores methods starting with 'get' or 'set'.

      The default was changed from 10 to 25 in PHPMD 2.3.

      Example

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

      Function getMetaValues has a Cognitive Complexity of 17 (exceeds 5 allowed). Consider refactoring.
      Open

          public function getMetaValues()
          {
              if (empty($this->_metaValues)) {
                  $meta = [];
                  if ($this->hasLoaded()) {
      Severity: Minor
      Found in core/modules/node/model/NodeModel.php - About 2 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 displayPublished has a Cognitive Complexity of 16 (exceeds 5 allowed). Consider refactoring.
      Open

          public function displayPublished()
          {
              if ($this->getNodetype()->get('published')) {
                  if (!$this->get('published')) {
                      return "<i class='icon-remove' title='No' />";
      Severity: Minor
      Found in core/modules/node/model/NodeModel.php - About 2 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 findRoot has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

          public function findRoot($accessChecks = true, $load = true)
          {
              $node = new self();
              if ($accessChecks === false) {
                  $node->ignoreAccessControl = true;
      Severity: Minor
      Found in core/modules/node/model/NodeModel.php - About 1 hr to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Method beforeValidate has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function beforeValidate()
          {
              // required fields
              $nodetype = $this->getNodetype();
              if ($nodetype->get('required_subtitle')) {
      Severity: Minor
      Found in core/modules/node/model/NodeModel.php - About 1 hr to fix

        Method getMetaValues has 31 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function getMetaValues()
            {
                if (empty($this->_metaValues)) {
                    $meta = [];
                    if ($this->hasLoaded()) {
        Severity: Minor
        Found in core/modules/node/model/NodeModel.php - About 1 hr to fix

          The class NodeModel has 63 public methods and attributes. Consider reducing the number of public items to less than 45.
          Open

          class NodeModel extends Ajde_Model_With_AclI18nRevision
          {
              protected $_autoloadParents = false;
              protected $_displayField = 'title';
              protected $_hasMeta = true;
          Severity: Minor
          Found in core/modules/node/model/NodeModel.php by phpmd

          ExcessivePublicCount

          Since: 0.1

          A large number of public methods and attributes declared in a class can indicate the class may need to be broken up as increased effort will be required to thoroughly test it.

          Example

          public class Foo {
              public $value;
              public $something;
              public $var;
              // [... more more public attributes ...]
          
              public function doWork() {}
              public function doMoreWork() {}
              public function doWorkAgain() {}
              // [... more more public methods ...]
          }

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

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

              public function getSibling($dir, $loop = true)
              {
                  if ($dir == 'next') {
                      $filter = Ajde_Filter::FILTER_GREATER;
                      $order = Ajde_Query::ORDER_ASC;
          Severity: Minor
          Found in core/modules/node/model/NodeModel.php - About 1 hr to fix

            Method findRoot has 28 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public function findRoot($accessChecks = true, $load = true)
                {
                    $node = new self();
                    if ($accessChecks === false) {
                        $node->ignoreAccessControl = true;
            Severity: Minor
            Found in core/modules/node/model/NodeModel.php - About 1 hr to fix

              Function beforeValidate has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
              Open

                  public function beforeValidate()
                  {
                      // required fields
                      $nodetype = $this->getNodetype();
                      if ($nodetype->get('required_subtitle')) {
              Severity: Minor
              Found in core/modules/node/model/NodeModel.php - About 55 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

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

                  public function getSibling($dir, $loop = true)
                  {
                      if ($dir == 'next') {
                          $filter = Ajde_Filter::FILTER_GREATER;
                          $order = Ajde_Query::ORDER_ASC;
              Severity: Minor
              Found in core/modules/node/model/NodeModel.php - About 45 mins to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Method getMediaTag has 6 arguments (exceeds 4 allowed). Consider refactoring.
              Open

                      $width = null,
                      $height = null,
                      $crop = null,
                      $class = null,
                      $attributes = [],
              Severity: Minor
              Found in core/modules/node/model/NodeModel.php - About 45 mins to fix

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

                    public function getRoot($returnModel = true)
                    {
                        if ($this->hasNotEmpty('root')) {
                            if ($returnModel) {
                                $this->loadParent('root');
                Severity: Minor
                Found in core/modules/node/model/NodeModel.php - About 45 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

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

                    public function checkPublished()
                    {
                        if ($this->getNodetype()->get('published')) {
                            if (!$this->get('published')) {
                                return false;
                Severity: Minor
                Found in core/modules/node/model/NodeModel.php - About 45 mins to fix

                Cognitive Complexity

                Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                A method's cognitive complexity is based on a few simple rules:

                • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                • Code is considered more complex for each "break in the linear flow of the code"
                • Code is considered more complex when "flow breaking structures are nested"

                Further reading

                Method getMediaLazyTag has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                    public function getMediaLazyTag($width = null, $height = null, $crop = null, $class = null, $attributes = [])
                Severity: Minor
                Found in core/modules/node/model/NodeModel.php - About 35 mins to fix

                  Method getMediaFilename has 5 arguments (exceeds 4 allowed). Consider refactoring.
                  Open

                      public function getMediaFilename($width = null, $height = null, $crop = null, $class = null, $attributes = [])
                  Severity: Minor
                  Found in core/modules/node/model/NodeModel.php - About 35 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                return '';
                    Severity: Major
                    Found in core/modules/node/model/NodeModel.php - About 30 mins to fix

                      The method beforeValidate() has an NPath complexity of 512. The configured NPath complexity threshold is 200.
                      Open

                          public function beforeValidate()
                          {
                              // required fields
                              $nodetype = $this->getNodetype();
                              if ($nodetype->get('required_subtitle')) {
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 beforeValidate() has a Cyclomatic Complexity of 10. The configured cyclomatic complexity threshold is 10.
                      Open

                          public function beforeValidate()
                          {
                              // required fields
                              $nodetype = $this->getNodetype();
                              if ($nodetype->get('required_subtitle')) {
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      CyclomaticComplexity

                      Since: 0.1

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

                      Example

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

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

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

                      class NodeModel extends Ajde_Model_With_AclI18nRevision
                      {
                          protected $_autoloadParents = false;
                          protected $_displayField = 'title';
                          protected $_hasMeta = true;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '86', column '30').
                      Open

                                  $validator = new Ajde_Model_Validator_HasChildren();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '142', column '36').
                      Open

                              $collection->addFilter(new Ajde_Filter_Join('user_node', 'user_node.user', 'user.id'));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '143', column '36').
                      Open

                              $collection->addFilter(new Ajde_Filter_Where('user_node.node', Ajde_Filter::FILTER_EQUALS, $this->getPK()));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '80', column '48').
                      Open

                                  $this->addValidator('summary', new Ajde_Model_Validator_Required());
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '96', column '47').
                      Open

                                  $this->addValidator('parent', new Ajde_Model_Validator_Required());
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '181', column '22').
                      Open

                              $users = new UserCollection();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      MissingImport

                      Since: 2.7.0

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

                      Example

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

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

                      Missing class import via use statement (line '74', column '49').
                      Open

                                  $this->addValidator('subtitle', new Ajde_Model_Validator_Required());
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '102', column '30').
                      Open

                                  $validator = new Ajde_Model_Validator_HasChildren();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 findRoot has a boolean flag argument $load, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          public function findRoot($accessChecks = true, $load = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '650', column '27').
                      Open

                              $collection = new NodeCollection();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '91', column '30').
                      Open

                                  $validator = new Ajde_Model_Validator_HasChildren();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '434', column '33').
                      Open

                                      $rfmethod = new ReflectionMethod($shadowModel, $method);
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 findRootNoAccessChecks has a boolean flag argument $load, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          public function findRootNoAccessChecks($load = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '664', column '36').
                      Open

                              $collection->addFilter(new Ajde_Filter_Join('node_media', 'node_media.media', 'media.id'));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '666', column '36').
                      Open

                              $collection->addFilter(new Ajde_Filter_Where('node_media.node', Ajde_Filter::FILTER_EQUALS, $this->getPK()));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '732', column '38').
                      Open

                                  $siblings->addFilter(new Ajde_Filter_Where('parent', Ajde_Filter::FILTER_EQUALS,
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      MissingImport

                      Since: 2.7.0

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

                      Example

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

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

                      Missing class import via use statement (line '194', column '54').
                      Open

                              $controller = Ajde_Controller::fromRoute(new Ajde_Core_Route('admin/node:panel'));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '368', column '28').
                      Open

                              $this->added = new Ajde_Db_Function('added');
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '635', column '27').
                      Open

                              $collection = new NodeCollection();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 getParent has a boolean flag argument $load, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          public function getParent($load = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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

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

                              $lazy = false
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '244', column '26').
                      Open

                              $timestamp = new DateTime($this->get('updated'));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '472', column '27').
                      Open

                                      throw new Ajde_Controller_Exception('Max recursion depth reached for setting slug');
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 _load has a boolean flag argument $populate, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          protected function _load($sql, $values, $populate = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '651', column '36').
                      Open

                              $collection->addFilter(new Ajde_Filter_Join('node_related', 'node.id', 'related'));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '720', column '38').
                      Open

                                  $siblings->addFilter(new Ajde_Filter_Where('sort', $filter, $this->sort));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 loadBySlug has a boolean flag argument $publishedCheck, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          public function loadBySlug($slug, $publishedCheck = false)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '652', column '36').
                      Open

                              $collection->addFilter(new Ajde_Filter_Where('node_related.node', Ajde_Filter::FILTER_EQUALS, $this->getPK()));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '691', column '27').
                      Open

                              $collection = new NodeCollection();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '83', column '46').
                      Open

                                  $this->addValidator('media', new Ajde_Model_Validator_Required());
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '108', column '41').
                      Open

                              $this->addValidator('slug', new Ajde_Model_Validator_Unique());
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 getSibling has a boolean flag argument $loop, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          public function getSibling($dir, $loop = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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

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

                          public function findRoot($accessChecks = true, $load = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '721', column '38').
                      Open

                                  $siblings->addFilter(new Ajde_Filter_Where('parent', Ajde_Filter::FILTER_EQUALS,
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '77', column '48').
                      Open

                                  $this->addValidator('content', new Ajde_Model_Validator_Required());
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '99', column '48').
                      Open

                                  $this->addValidator('content', new Ajde_Model_Validator_Required());
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '365', column '31').
                      Open

                                  $this->slug = new Ajde_Db_Function('slug');
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '376', column '28').
                      Open

                              $this->added = new Ajde_Db_Function('NOW()');
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 getPrev has a boolean flag argument $loop, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          public function getPrev($loop = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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

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

                          public function getUrl($relative = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '719', column '29').
                      Open

                                  $siblings = new NodeCollection();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '663', column '27').
                      Open

                              $collection = new MediaCollection();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '842', column '25').
                      Open

                              $subQuery = new Ajde_Db_Function('(SELECT tag FROM '.$crossReferenceTable.' WHERE node = '.$this->getPK().')');
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '843', column '27').
                      Open

                              $collection = new TagCollection();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '844', column '36').
                      Open

                              $collection->addFilter(new Ajde_Filter_Where('id', Ajde_Filter::FILTER_IN, $subQuery));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 getRoot has a boolean flag argument $returnModel, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          public function getRoot($returnModel = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '665', column '36').
                      Open

                              $collection->addFilter(new Ajde_Filter_Join('node', 'node.id', 'node_media.node'));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 getNext has a boolean flag argument $loop, which is a certain sign of a Single Responsibility Principle violation.
                      Open

                          public function getNext($loop = true)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 '141', column '27').
                      Open

                              $collection = new UserCollection();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '323', column '35').
                      Open

                          public function addChildButton()
                          {
                              if ($this->hasLoaded() && $childtype = $this->getNodetype()->get('child_type')) {
                                  $this->getNodetype()->loadParent('child_type');
                      
                      
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      Avoid using static access to class 'Ajde_Event' in method 'registerEvents'.
                      Open

                              if (!Ajde_Event::has($this, 'afterCrudSave', 'postCrudSave')) {
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '261', column '26').
                      Open

                          public function displayPublished()
                          {
                              if ($this->getNodetype()->get('published')) {
                                  if (!$this->get('published')) {
                                      return "<i class='icon-remove' title='No' />";
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      The method displayPublished uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                          } else {
                                              return "<i class='icon-ok' title='Yes' />";
                                          }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      The method displayPublished uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                  } else {
                                      if (($start = $this->get('published_start')) &&
                                          strtotime($start) > time()
                                      ) {
                                          return "<i class='icon-time' title='Queued' />";
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      The method displayPublished uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                              } else {
                                  return '';
                              }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      The method getMetaValues uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                          } else {
                                              $meta[$result['meta']] = $result['value'];
                                          }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      The method getRoot uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                  } else {
                                      return (string) parent::getRoot();
                                  }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '256', column '22').
                      Open

                          public function displayPublished()
                          {
                              if ($this->getNodetype()->get('published')) {
                                  if (!$this->get('published')) {
                                      return "<i class='icon-remove' title='No' />";
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      The method getSibling uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                              } else {
                                  $filter = Ajde_Filter::FILTER_LESS;
                                  $order = Ajde_Query::ORDER_DESC;
                              }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '772', column '14').
                      Open

                          public function getFullUrl()
                          {
                              if (($parent = $this->getParent()) && $parent->hasLoaded()) {
                                  return $parent->getFullUrl().'/'.$this->getSlug();
                              }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      The method validateParent uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                              } else {
                                  $root = new self();
                                  $root->ignoreAccessControl = true;
                                  $root->loadByPK($rootId);
                                  $users = $root->findChildUsersAsUidArray();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '164', column '13').
                      Open

                          public function getPublishData()
                          {
                              if ($return = $this->shadowCall('getPublishData')) {
                                  return $return;
                              }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      The method getShadowModel uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                  } else {
                                      $this->_shadowModel = false;
                                  }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      The method findRoot uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                              } else {
                                  if ($lastParent) {
                                      if ($load) {
                                          $root = new self();
                                          if (!$accessChecks) {
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      The method findRoot uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                      } else {
                                          return (string) $lastParent;
                                      }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '328', column '35').
                      Open

                          public function addChildButton()
                          {
                              if ($this->hasLoaded() && $childtype = $this->getNodetype()->get('child_type')) {
                                  $this->getNodetype()->loadParent('child_type');
                      
                      
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      The method getRoot uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                  } else {
                                      return (string) $this;
                                  }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      Avoid using static access to class 'Ajde_Controller' in method 'displayPanel'.
                      Open

                              $controller = Ajde_Controller::fromRoute(new Ajde_Core_Route('admin/node:panel'));
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 'Ajde_Event' in method 'registerEvents'.
                      Open

                                  Ajde_Event::register($this, 'beforeCrudSave', 'preCrudSave');
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 getRoot uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                              } else {
                                  if ($returnModel) {
                                      return $this;
                                  } else {
                                      return (string) $this;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      The method getMetaValues uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                              } else {
                                                  $meta[$result['meta']] = [
                                                      $meta[$result['meta']],
                                                      $result['value'],
                                                  ];
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ElseExpression

                      Since: 1.4.0

                      An if expression with an else branch is basically not necessary. You can rewrite the conditions in a way that the else clause is not necessary and the code becomes simpler to read. To achieve this, use early return statements, though you may need to split the code it several smaller methods. For very simple assignments you could also use the ternary operations.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($flag) {
                                  // one branch
                              } else {
                                  // another branch
                              }
                          }
                      }

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

                      The method displayPublished uses an else expression. Else clauses are basically not necessary and you can simplify the code by not using them.
                      Open

                                      } else {
                                          if (($end = $this->get('published_end')) &&
                                              strtotime($end) < time()
                                          ) {
                                              return "<i class='icon-remove' title='Expired' />";
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '178', column '13').
                      Open

                          public function getPublishRecipients()
                          {
                              if ($return = $this->shadowCall('getPublishRecipients')) {
                                  return $return;
                              }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      Avoid using static access to class 'Ajde_Component_String' in method 'displayAgo'.
                      Open

                              return Ajde_Component_String::time2str($timestamp);
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 'Ajde_Lang' in method 'displayLang'.
                      Open

                              $lang = Ajde_Lang::getInstance();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '524', column '18').
                      Open

                          public function checkPublished()
                          {
                              if ($this->getNodetype()->get('published')) {
                                  if (!$this->get('published')) {
                                      return false;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      Avoid using static access to class 'Ajde_Event' in method 'registerEvents'.
                      Open

                                  Ajde_Event::register($this, 'afterCrudSave', 'postCrudSave');
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 assigning values to variables in if clauses and the like (line '519', column '18').
                      Open

                          public function checkPublished()
                          {
                              if ($this->getNodetype()->get('published')) {
                                  if (!$this->get('published')) {
                                      return false;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      IfStatementAssignment

                      Since: 2.7.0

                      Assignments in if clauses and the like are considered a code smell. Assignments in PHP return the right operand as their result. In many cases, this is an expected behavior, but can lead to many difficult to spot bugs, especially when the right operand could result in zero, null or an empty string and the like.

                      Example

                      class Foo
                      {
                          public function bar($flag)
                          {
                              if ($foo = 'bar') { // possible typo
                                  // ...
                              }
                              if ($baz = 0) { // always false
                                  // ...
                              }
                          }
                      }

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

                      Avoid unused parameters such as '$crud'.
                      Open

                          public function preCrudSave(Ajde_Controller $controller, Ajde_Crud $crud)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedFormalParameter

                      Since: 0.2

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

                      Example

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

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

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

                              $id = $this->getPK();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedLocalVariable

                      Since: 0.2

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

                      Example

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

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

                      Avoid unused parameters such as '$controller'.
                      Open

                          public function preCrudSave(Ajde_Controller $controller, Ajde_Crud $crud)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedFormalParameter

                      Since: 0.2

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

                      Example

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

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

                      Avoid unused parameters such as '$crud'.
                      Open

                          public function postCrudSave(Ajde_Controller $controller, Ajde_Crud $crud)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedFormalParameter

                      Since: 0.2

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

                      Example

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

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

                      Avoid unused parameters such as '$attributes'.
                      Open

                          public function getMediaFilename($width = null, $height = null, $crop = null, $class = null, $attributes = [])
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedFormalParameter

                      Since: 0.2

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

                      Example

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

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

                      Avoid unused parameters such as '$gid'.
                      Open

                          public function validateOwner($uid, $gid)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedFormalParameter

                      Since: 0.2

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

                      Example

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

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

                      Avoid unused parameters such as '$class'.
                      Open

                          public function getMediaFilename($width = null, $height = null, $crop = null, $class = null, $attributes = [])
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedFormalParameter

                      Since: 0.2

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

                      Example

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

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

                      Avoid unused parameters such as '$controller'.
                      Open

                          public function postCrudSave(Ajde_Controller $controller, Ajde_Crud $crud)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedFormalParameter

                      Since: 0.2

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

                      Example

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

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

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

                              $nodetype = (string) $this->get('nodetype');
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 private methods such as '_setSlug'.
                      Open

                          private function _setSlug()
                          {
                              $this->slug = $this->_makeSlug();
                          }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedPrivateMethod

                      Since: 0.2

                      Unused Private Method detects when a private method is declared but is unused.

                      Example

                      class Something
                      {
                          private function foo() {} // unused
                      }

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

                      Avoid unused parameters such as '$gid'.
                      Open

                          public function validateParent($uid, $gid)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      UnusedFormalParameter

                      Since: 0.2

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

                      Example

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

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

                      TODO found
                      Open

                              // TODO: we can never reach this?
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by fixme

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

                                      foreach ($results as $result) {
                                          if (isset($meta[$result['meta']])) {
                                              if (is_array($meta[$result['meta']])) {
                                                  $meta[$result['meta']][] = $result['value'];
                                              } else {
                      Severity: Major
                      Found in core/modules/node/model/NodeModel.php and 1 other location - About 2 hrs to fix
                      lib/Ajde/Model.php on lines 301..314

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

                      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 3 locations. Consider refactoring.
                      Open

                          public function displayLang()
                          {
                              Ajde::app()->getDocument()->getLayout()->getParser()->getHelper()->requireCssPublic('core/flags.css');
                      
                              $lang = Ajde_Lang::getInstance();
                      Severity: Major
                      Found in core/modules/node/model/NodeModel.php and 2 other locations - About 1 hr to fix
                      core/modules/admin/model/MenuModel.php on lines 35..49
                      core/modules/email/model/TemplateModel.php on lines 10..24

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

                      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

                          private function _sluggify($name)
                          {
                              // @see http://stackoverflow.com/a/5240834
                              $slug = iconv('UTF-8', 'ASCII//TRANSLIT', $name);
                              $slug = preg_replace("/[^a-zA-Z0-9\/_| -]/", '', $name);
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php and 1 other location - About 45 mins to fix
                      core/modules/shop/model/ProductModel.php on lines 156..165

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

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

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

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

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

                      Refactorings

                      Further Reading

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

                          protected $_ignoreFieldInRevisionIfEmpty = ['slug'];
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      LongVariable

                      Since: 0.2

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

                      Example

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

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

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

                          protected $_ignoreFieldInRevision = ['updated', 'added', 'level', 'sort', 'lang_root'];
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      LongVariable

                      Since: 0.2

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

                      Example

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

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

                      The property $_hasMeta is not named in camelCase.
                      Open

                      class NodeModel extends Ajde_Model_With_AclI18nRevision
                      {
                          protected $_autoloadParents = false;
                          protected $_displayField = 'title';
                          protected $_hasMeta = true;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 $_shadowModel is not named in camelCase.
                      Open

                      class NodeModel extends Ajde_Model_With_AclI18nRevision
                      {
                          protected $_autoloadParents = false;
                          protected $_displayField = 'title';
                          protected $_hasMeta = true;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 $_ignoreFieldInRevisionIfEmpty is not named in camelCase.
                      Open

                      class NodeModel extends Ajde_Model_With_AclI18nRevision
                      {
                          protected $_autoloadParents = false;
                          protected $_displayField = 'title';
                          protected $_hasMeta = true;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 $_autoloadParents is not named in camelCase.
                      Open

                      class NodeModel extends Ajde_Model_With_AclI18nRevision
                      {
                          protected $_autoloadParents = false;
                          protected $_displayField = 'title';
                          protected $_hasMeta = true;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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

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

                              $id = $this->getPK();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ShortVariable

                      Since: 0.2

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

                      Example

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

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

                      The property $_ignoreFieldInRevision is not named in camelCase.
                      Open

                      class NodeModel extends Ajde_Model_With_AclI18nRevision
                      {
                          protected $_autoloadParents = false;
                          protected $_displayField = 'title';
                          protected $_hasMeta = true;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 $_displayField is not named in camelCase.
                      Open

                      class NodeModel extends Ajde_Model_With_AclI18nRevision
                      {
                          protected $_autoloadParents = false;
                          protected $_displayField = 'title';
                          protected $_hasMeta = true;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 $_parentAclCache is not named in camelCase.
                      Open

                      class NodeModel extends Ajde_Model_With_AclI18nRevision
                      {
                          protected $_autoloadParents = false;
                          protected $_displayField = 'title';
                          protected $_hasMeta = true;
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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

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

                          public static function fromPk($id)
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      ShortVariable

                      Since: 0.2

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

                      Example

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

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

                      The variable $_parentAclCache is not named in camelCase.
                      Open

                          public function validateParent($uid, $gid)
                          {
                              $rootId = $this->getRoot(false);
                              if (isset(self::$_parentAclCache[$rootId])) {
                                  $users = self::$_parentAclCache[$rootId];
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 $_parentAclCache is not named in camelCase.
                      Open

                          public function validateParent($uid, $gid)
                          {
                              $rootId = $this->getRoot(false);
                              if (isset(self::$_parentAclCache[$rootId])) {
                                  $users = self::$_parentAclCache[$rootId];
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.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 $_parentAclCache is not named in camelCase.
                      Open

                          public function validateParent($uid, $gid)
                          {
                              $rootId = $this->getRoot(false);
                              if (isset(self::$_parentAclCache[$rootId])) {
                                  $users = self::$_parentAclCache[$rootId];
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      CamelCaseVariableName

                      Since: 0.2

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

                      Example

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

                      Source

                      The method _load is not named in camelCase.
                      Open

                          protected function _load($sql, $values, $populate = true)
                          {
                              $return = parent::_load($sql, $values, $populate);
                              if ($return && Ajde::app()->getRequest()->getParam('filterPublished', false) == true) {
                                  $this->filterPublished();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      CamelCaseMethodName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function get_name() {
                          }
                      }

                      Source

                      The method _setSlug is not named in camelCase.
                      Open

                          private function _setSlug()
                          {
                              $this->slug = $this->_makeSlug();
                          }
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      CamelCaseMethodName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function get_name() {
                          }
                      }

                      Source

                      The method _makeSlug is not named in camelCase.
                      Open

                          private function _makeSlug()
                          {
                              $name = $this->title;
                      
                              $ghost = new self();
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      CamelCaseMethodName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function get_name() {
                          }
                      }

                      Source

                      The method _sluggify is not named in camelCase.
                      Open

                          private function _sluggify($name)
                          {
                              // @see http://stackoverflow.com/a/5240834
                              $slug = iconv('UTF-8', 'ASCII//TRANSLIT', $name);
                              $slug = preg_replace("/[^a-zA-Z0-9\/_| -]/", '', $name);
                      Severity: Minor
                      Found in core/modules/node/model/NodeModel.php by phpmd

                      CamelCaseMethodName

                      Since: 0.2

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

                      Example

                      class ClassName {
                          public function get_name() {
                          }
                      }

                      Source

                      There are no issues that match your filters.

                      Category
                      Status