XoopsModules25x/mymenus

View on GitHub

Showing 63 of 63 total issues

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

    public static function getServerStats()
    {
        //mb    $wfdownloads = WfdownloadsWfdownloads::getInstance();
        $moduleDirName      = basename(dirname(dirname(__DIR__)));
        $moduleDirNameUpper = strtoupper($moduleDirName);
Severity: Minor
Found in class/Common/ServerStats.php - About 1 hr to fix

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

        public function buildSelected()
        {
            //get the currentpage
            $sel = [];
            //        $queryString = $_SERVER['QUERY_STRING'] ? '?' . $_SERVER['QUERY_STRING'] : '';
    Severity: Minor
    Found in class/builder.php - About 1 hr to fix

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

          public static function saveLink($id, $mid)
          {
              /** @var \XoopsModules\Mymenus\Helper $helper */
              $helper = \XoopsModules\Mymenus\Helper::getInstance();
              /** @var  \XoopsModules\Mymenus\LinksHandler $linksHandler */
      Severity: Minor
      Found in class/LinksUtility.php - About 1 hr to fix

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

            public static function deleteDirectory($src)
            {
                // Only continue if user is a 'global' Admin
                if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) {
                    return false;
        Severity: Minor
        Found in class/Common/FilesManagement.php - About 1 hr to fix

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

              public static function getExtraValue($type = 'user', $value)
              {
                  $registry = Mymenus\Registry::getInstance();
                  $ret      = 0;
                  $values   = ['pm_new', 'pm_readed', 'pm_total'];
          Severity: Minor
          Found in class/Plugins/Mymenus/PluginItem.php - About 1 hr to fix

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

                public static function rmove($src, $dest)
                {
                    // Only continue if user is a 'global' Admin
                    if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) {
                        return false;
            Severity: Minor
            Found in class/Common/FilesManagement.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 buildUpDown has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public function buildUpDown($pid = 0)
                {
                    static $idx = -1;
                    $prevWeight = null;
                    $up         = 0;
            Severity: Minor
            Found in class/builder.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 recurseCopy has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function recurseCopy($src, $dst)
                {
                    $dir = opendir($src);
                    //        @mkdir($dst);
                    if (!@mkdir($dst) && !is_dir($dst)) {
            Severity: Minor
            Found in class/Common/FilesManagement.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 setEvents has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public function setEvents()
                {
                    foreach ($this->plugins as $plugin) {
            //            require $GLOBALS['xoops']->path("modules/{$this->helper->getDirname()}/plugins/{$plugin}/{$plugin}.php");
                        $dirname = $this->helper->getDirname();
            Severity: Minor
            Found in class/Plugin.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 buildSubTree has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

            ddtreemenu.buildSubTree = function (treeid, ulelement, index) {
                ulelement.parentNode.className = "submenu";
                if (typeof persisteduls[treeid] == "object") { //if cookie exists (persisteduls[treeid] is an array versus "" string)
                    if (ddtreemenu.searcharray(persisteduls[treeid], index)) {
                        ulelement.setAttribute("rel", "open");
            Severity: Minor
            Found in skins/treemenu/simpletreemenu.js - 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 rcopy has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function rcopy($src, $dest)
                {
                    // Only continue if user is a 'global' Admin
                    if (!($GLOBALS['xoopsUser'] instanceof \XoopsUser) || !$GLOBALS['xoopsUser']->isAdmin()) {
                        return false;
            Severity: Minor
            Found in class/Common/FilesManagement.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 buildSelected has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
            Open

                public function buildSelected()
                {
                    //get the currentpage
                    $sel = [];
                    //        $queryString = $_SERVER['QUERY_STRING'] ? '?' . $_SERVER['QUERY_STRING'] : '';
            Severity: Minor
            Found in class/builder.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 saveLink has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

                public static function saveLink($id, $mid)
                {
                    /** @var \XoopsModules\Mymenus\Helper $helper */
                    $helper = \XoopsModules\Mymenus\Helper::getInstance();
                    /** @var  \XoopsModules\Mymenus\LinksHandler $linksHandler */
            Severity: Minor
            Found in class/LinksUtility.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 createTree has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
            Open

            ddtreemenu.createTree = function (treeid, enablepersist, persistdays) {
                var ultags = document.getElementById(treeid).getElementsByTagName("ul");
                if (typeof persisteduls[treeid] == "undefined")
                    persisteduls[treeid] = (enablepersist == true && ddtreemenu.getCookie(treeid) != "") ? ddtreemenu.getCookie(treeid).split(",") : "";
                for (var i = 0; i < ultags.length; i++)
            Severity: Minor
            Found in skins/treemenu/simpletreemenu.js - 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

            Consider simplifying this complex logical expression.
            Open

                        if (parentItem != null && nextItem === null &&
                            (o.rtl && (this.positionAbs.left + this.helper.outerWidth() > parentItem.offset().left + parentItem.outerWidth()) ||
                            !o.rtl && (this.positionAbs.left < parentItem.offset().left))) {
                            parentItem.after(this.placeholder[0]);
                            this._clearEmpty(parentItem[0]);
            Severity: Major
            Found in assets/js/nestedSortable.js - About 40 mins to fix

              Function flatten has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

              ddtreemenu.flatten = function (treeid, action) { //expand or contract all UL elements
                  var ultags = document.getElementById(treeid).getElementsByTagName("ul");
                  for (var i = 0; i < ultags.length; i++) {
                      ultags[i].style.display = (action == "expand") ? "block" : "none";
                      var relvalue = (action == "expand") ? "open" : "closed";
              Severity: Minor
              Found in skins/treemenu/simpletreemenu.js - About 35 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 addLink has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
              Open

                  public static function addLink($mid)
                  {
                      /** @var \XoopsModules\Mymenus\Helper $helper */
                      $helper = \XoopsModules\Mymenus\Helper::getInstance();
                      //
              Severity: Minor
              Found in class/LinksUtility.php - About 35 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

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

                      if (status == "error") {
                          var msg = "Sorry but there was an error: ";
                          $("#error").html(msg + xhr.status + " " + xhr.statusText);
                      } else {
                          $("#hidden-result_" + id).hide();
              Severity: Minor
              Found in assets/js/links.js and 1 other location - About 35 mins to fix
              assets/js/links.js on lines 80..85

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

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

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

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

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

              Refactorings

              Further Reading

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

                      if (status == "error") {
                          var msg = "Sorry but there was an error: ";
                          $("#error").html(msg + xhr.status + " " + xhr.statusText);
                      } else {
                          $("#hidden-result_" + id).hide();
              Severity: Minor
              Found in assets/js/links.js and 1 other location - About 35 mins to fix
              assets/js/links.js on lines 66..72

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

              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

              Function xoops_module_install_mymenus has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
              Open

              function xoops_module_install_mymenus(\XoopsModule $module)
              {
                  require   dirname(dirname(dirname(__DIR__))) . '/mainfile.php';
                  require   dirname(__DIR__) . '/include/config.php';
              
              
              Severity: Minor
              Found in include/oninstall.php - About 25 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

              Severity
              Category
              Status
              Source
              Language