XoopsModules25x/news

View on GitHub

Showing 236 of 310 total issues

Function b_news_top_show has a Cognitive Complexity of 281 (exceeds 5 allowed). Consider refactoring.
Open

function b_news_top_show($options)
{
    global $xoopsConfig;

    /** @var Helper $helper */
Severity: Minor
Found in blocks/news_top.php - About 5 days 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

File index.php has 1675 lines of code (exceeds 250 allowed). Consider refactoring.
Open

<?php declare(strict_types=1);
//
// ------------------------------------------------------------------------ //
// XOOPS - PHP Content Management System                                    //
// Copyright (c) 2000-2020 XOOPS.org                                             //
Severity: Major
Found in admin/index.php - About 4 days to fix

    File NewsStory.php has 1244 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    <?php declare(strict_types=1);
    
    namespace XoopsModules\News;
    
    /*
    Severity: Major
    Found in class/NewsStory.php - About 3 days to fix

      Method b_news_top_show has 475 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function b_news_top_show($options)
      {
          global $xoopsConfig;
      
          /** @var Helper $helper */
      Severity: Major
      Found in blocks/news_top.php - About 2 days to fix

        Method topicsmanager has 395 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        function topicsmanager(): void
        {
            global $xoopsDB, $xoopsConfig, $xoopsModule, $myts;
            require_once XOOPS_ROOT_PATH . '/class/xoopsformloader.php';
            xoops_cp_header();
        Severity: Major
        Found in admin/index.php - About 1 day to fix

          File xoops_version.php has 646 lines of code (exceeds 250 allowed). Consider refactoring.
          Open

          <?php declare(strict_types=1);
          /*
           * You may not change or alter any portion of this comment or credits
           * of supporting developers from this source code or any supporting source code
           * which is considered copyrighted (c) material of the original comment or credit authors.
          Severity: Major
          Found in xoops_version.php - About 1 day to fix

            Function store has a Cognitive Complexity of 70 (exceeds 5 allowed). Consider refactoring.
            Open

                public function store()
                {
                    $myts   = MyTextSanitizer::getInstance();
                    $title  = '';
                    $imgurl = '';
            Severity: Minor
            Found in class/XoopsTopic.php - About 1 day 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 store has a Cognitive Complexity of 69 (exceeds 5 allowed). Consider refactoring.
            Open

                public function store()
                {
                    $myts              = \MyTextSanitizer::getInstance();
                    $title             = '';
                    $imgurl            = '';
            Severity: Minor
            Found in class/NewsTopic.php - About 1 day 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

            File news_top.php has 593 lines of code (exceeds 250 allowed). Consider refactoring.
            Open

            <?php declare(strict_types=1);
            /*
             * You may not change or alter any portion of this comment or credits
             * of supporting developers from this source code or any supporting source code
             * which is considered copyrighted (c) material of the original comment or credit authors.
            Severity: Major
            Found in blocks/news_top.php - About 1 day to fix

              File Utility.php has 557 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              <?php declare(strict_types=1);
              
              namespace XoopsModules\News;
              
              use MyTextSanitizer;
              Severity: Major
              Found in class/Utility.php - About 1 day to fix

                File functions.php has 520 lines of code (exceeds 250 allowed). Consider refactoring.
                Open

                <?php declare(strict_types=1);
                /*
                 * You may not change or alter any portion of this comment or credits
                 * of supporting developers from this source code or any supporting source code
                 * which is considered copyrighted (c) material of the original comment or credit authors.
                Severity: Major
                Found in include/functions.php - About 1 day to fix

                  Function xoops_module_update_news has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function xoops_module_update_news(\XoopsModule $module, $previousVersion = null)
                  {
                      $moduleDirName      = \basename(\dirname(__DIR__));
                      $moduleDirNameUpper = \mb_strtoupper($moduleDirName);
                  
                  
                  Severity: Minor
                  Found in include/onupdate.php - About 1 day 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 truncateHtml has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public static function truncateHtml($text, $length = 100, $ending = '...', $exact = false, $considerHtml = true)
                      {
                          if ($considerHtml) {
                              // if the plain text is shorter than the maximum length, return the whole text
                              if (mb_strlen(\preg_replace('/<.*?' . '>/', '', $text)) <= $length) {
                  Severity: Minor
                  Found in class/Common/SysUtility.php - About 1 day 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

                  File Blocksadmin.php has 509 lines of code (exceeds 250 allowed). Consider refactoring.
                  Open

                  <?php
                  
                  declare(strict_types=1);
                  
                  namespace XoopsModules\News\Common;
                  Severity: Major
                  Found in class/Common/Blocksadmin.php - About 1 day to fix

                    File submit.php has 504 lines of code (exceeds 250 allowed). Consider refactoring.
                    Open

                    <?php declare(strict_types=1);
                    /*
                     * You may not change or alter any portion of this comment or credits
                     * of supporting developers from this source code or any supporting source code
                     * which is considered copyrighted (c) material of the original comment or credit authors.
                    Severity: Major
                    Found in submit.php - About 1 day to fix

                      File NewsTopic.php has 475 lines of code (exceeds 250 allowed). Consider refactoring.
                      Open

                      <?php declare(strict_types=1);
                      
                      namespace XoopsModules\News;
                      
                      /*
                      Severity: Minor
                      Found in class/NewsTopic.php - About 7 hrs to fix

                        Function addTopic has a Cognitive Complexity of 44 (exceeds 5 allowed). Consider refactoring.
                        Open

                        function addTopic(): void
                        {
                            global $xoopsDB, $xoopsModule;
                            $helper = Helper::getInstance();
                        
                        
                        Severity: Minor
                        Found in admin/index.php - About 6 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

                        XoopsStory has 46 functions (exceeds 20 allowed). Consider refactoring.
                        Open

                        class XoopsStory
                        {
                            public $table;
                            public $storyid;
                            public $topicid;
                        Severity: Minor
                        Found in class/XoopsStory.php - About 6 hrs to fix

                          NewsStory has 46 functions (exceeds 20 allowed). Consider refactoring.
                          Open

                          class NewsStory extends XoopsStory
                          {
                              public $newstopic; // XoopsTopic object
                              public $rating; // News rating
                              public $votes; // Number of votes
                          Severity: Minor
                          Found in class/NewsStory.php - About 6 hrs to fix

                            Method PrintPage has 157 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            function PrintPage(): void
                            {
                                global $xoopsConfig, $xoopsModule, $story, $xoops_meta_keywords, $xoops_meta_description;
                                $myts     = \MyTextSanitizer::getInstance();
                                $datetime = formatTimestamp($story->published(), News\Utility::getModuleOption('dateformat')); ?>
                            Severity: Major
                            Found in print.php - About 6 hrs to fix
                              Severity
                              Category
                              Status
                              Source
                              Language