jidaikobo-shibata/a11yc

View on GitHub

Showing 280 of 426 total issues

Function a11yc_js has 171 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function a11yc_js(){
    jQuery(function($){
        // set position base
        if($('body').css('position') == 'static')
        {
Severity: Major
Found in public/assets/js/a11yc_live.js - About 6 hrs to fix

    File a11yc.js has 387 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    jQuery(function($){
    if(!$('.a11yc')[0])
    {
        return;
    }
    Severity: Minor
    Found in public/assets/js/a11yc.js - About 5 hrs to fix

      Function missMatchForAndId has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
      Open

          private static function missMatchForAndId($n, $url, $ms)
          {
              if (isset($ms[1]))
              {
                  foreach ($ms[0] as $m)
      Severity: Minor
      Found in classes/Validate/Check/FormAndLabels.php - About 3 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 check has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function check($url)
          {
              Validate\Set::log($url, 'link_check', self::$unspec, 5);
              if ( ! static::$do_link_check) return;
              Validate\Set::log($url, 'link_check', self::$unspec, 1);
      Severity: Minor
      Found in classes/Validate/Check/LinkCheck.php - About 3 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 check has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function check($url)
          {
              Validate\Set::log($url, 'tell_user_file_type', self::$unspec, 1);
              $str = Element\Get::ignoredHtml($url);
              $ms = Element\Get::elementsByRe($str, 'ignores', 'anchors_and_values');
      Severity: Minor
      Found in classes/Validate/Check/TellUserFileType.php - About 3 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 pages has a Cognitive Complexity of 25 (exceeds 5 allowed). Consider refactoring.
      Open

          private static function pages($pages_old_tbl, $checks_old_tbl)
          {
              // migrate pages
              self::migratePages($pages_old_tbl);
      
      
      Severity: Minor
      Found in classes/Update/One2Two.php - About 3 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

      File Validate.php has 311 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      <?php
      /**
       * A11yc\Validate
       *
       * @package    part of A11yc
      Severity: Minor
      Found in classes/Validate.php - About 3 hrs to fix

        Function explodeStrings has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function explodeStrings($str)
            {
                $attrs = array();
                foreach (explode(' ', $str) as $k => $v)
                {
        Severity: Minor
        Found in classes/Element.php - About 3 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 getFields has a Cognitive Complexity of 23 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function getFields($table, $name = 'default')
            {
                if ( ! static::isTableExist($table, $name)) return array();
                $instance = static::instance($name);
                $retvals = array();
        Severity: Minor
        Found in libs/kontiki/classes/Db.php - About 3 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 getCssFileFromLink has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

            private static function getCssFileFromLink($html, $ua)
            {
                $css = '';
                $ua = $ua == 'using' ? Input::userAgent() : $ua;
                if (preg_match_all("/\<link [^\>]*\>/si", $html, $ms))
        Severity: Minor
        Found in classes/Model/Css.php - About 3 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 addPages has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function addPages($is_force = false, $pages = array())
            {
                $pages = $pages ?: explode("\n", trim(Input::post('pages')));
        
                // add without check
        Severity: Minor
        Found in classes/Controller/PageAdd.php - About 3 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 getProcedures has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
        Open

            private static function getProcedures($techs)
            {
                // remove introduction
                unset($techs[0]);
        
        
        Severity: Minor
        Found in classes/Controller/Tech.php - About 3 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 addErrorToHtml has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function addErrorToHtml(
                $url,
                $error_id,
                $s_errors,
                $ignore_vals = '',
        Severity: Minor
        Found in classes/Validate.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 prepareStrings has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function prepareStrings($str)
            {
                // escaped quote
                $str = str_replace(
                    array("\\'", '\\"'),
        Severity: Minor
        Found in classes/Element.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 uniqueLabel has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
        Open

            private static function uniqueLabel($k, $url, $whole_form, $v)
            {
                preg_match_all("/\<label[^\>]*?\>(.+?)\<\/label\>/is", $whole_form, $ms);
        
                if (isset($ms[1]))
        Severity: Minor
        Found in classes/Validate/Check/FormAndLabels.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 check has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function check($url)
            {
                Validate\Set::log($url, 'same_urls_should_have_same_text', self::$unspec, 1);
        
                // urls
        Severity: Minor
        Found in classes/Validate/Check/SameUrlsShouldHaveSameText.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 divideSelectorsAndProperties has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
        Open

            private static function divideSelectorsAndProperties($csses)
            {
                $rets = array();
        
                foreach ($csses as $type => $type_css)
        Severity: Minor
        Found in classes/Model/CssFormat.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 getTitles has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
        Open

            private static function getTitles($techs)
            {
                $results = array();
                foreach ($techs as $tech)
                {
        Severity: Minor
        Found in classes/Controller/Tech.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 check has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function check($url)
            {
                Validate\Set::log($url, 'css_is_meanfull_content', self::$unspec, 5);
                if ( ! static::$do_css_check) return;
                Validate\Set::log($url, 'css_is_meanfull_content', self::$unspec, 1);
        Severity: Minor
        Found in classes/Validate/Check/CssContent.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 check has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
        Open

            public static function check($url)
            {
                Validate\Set::log($url, 'cannot_contain_newline', self::$unspec, 1);
                Validate\Set::log($url, 'unbalanced_quotation', self::$unspec, 1);
                Validate\Set::log($url, 'cannot_contain_multibyte_space', self::$unspec, 1);
        Severity: Minor
        Found in classes/Validate/Check/InvalidTag.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

        Severity
        Category
        Status
        Source
        Language