TeaThemeOptions/TeaThemeOptions

View on GitHub

Showing 177 of 177 total issues

Similar blocks of code found in 4 locations. Consider refactoring.
Open

        _ol.$el.find(_ol.options.addbutton).on('click', $.proxy(_ol.open_medialib, _ol));
Severity: Major
Found in src/Resources/assets/js/upload/upload.js and 3 other locations - About 35 mins to fix
src/Resources/assets/js/link/link.js on lines 52..52
src/Resources/assets/js/maps/maps.js on lines 49..49
src/Resources/assets/js/social/social.js on lines 61..61

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

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

Similar blocks of code found in 4 locations. Consider refactoring.
Open

        _ol.$el.find(_ol.options.linkbutton).on('keyup', $.proxy(_ol.linketize, _ol));
Severity: Major
Found in src/Resources/assets/js/link/link.js and 3 other locations - About 35 mins to fix
src/Resources/assets/js/maps/maps.js on lines 49..49
src/Resources/assets/js/social/social.js on lines 61..61
src/Resources/assets/js/upload/upload.js on lines 68..68

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

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 getWPPosts has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
Open

    protected function getWPPosts($options = array())
    {
        //Build contents
        $contents = array();

Severity: Minor
Found in src/Core/Field/Wordpress.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

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

    protected function getWPCategories($options = array())
    {
        //Build contents
        $contents = array();

Severity: Minor
Found in src/Core/Field/Wordpress.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

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

    protected function getWPPages($options = array())
    {
        //Build contents
        $contents = array();

Severity: Minor
Found in src/Core/Field/Wordpress.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

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

    public function prepareField($content, $details = array())
    {
        //Build details
        $post = isset($details['post']) ? $details['post'] : 0;
        $prefix = isset($details['prefix']) ? $details['prefix'] : '';
Severity: Minor
Found in src/Core/Field/Social.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

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

    protected function getWPMenus($options = array())
    {
        //Build contents
        $contents = array();

Severity: Minor
Found in src/Core/Field/Wordpress.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

Avoid too many return statements within this method.
Open

            return $error;
Severity: Major
Found in src/Core/Field/Field.php - About 30 mins to fix

    Avoid too many return statements within this method.
    Open

            return $field;
    Severity: Major
    Found in src/Core/Field/Field.php - About 30 mins to fix

      Avoid too many return statements within this method.
      Open

              return array($posttype, $slug);
      Severity: Major
      Found in src/Core/PostType/PosttypeHook.php - About 30 mins to fix

        Similar blocks of code found in 7 locations. Consider refactoring.
        Open

                _ol.$el.find(_ol.options.delallbutton).on('click', $.proxy(_ol.remove_all, _ol));
        Severity: Major
        Found in src/Resources/assets/js/link/link.js and 6 other locations - About 30 mins to fix
        src/Resources/assets/js/link/link.js on lines 53..53
        src/Resources/assets/js/link/link.js on lines 54..54
        src/Resources/assets/js/social/social.js on lines 62..62
        src/Resources/assets/js/social/social.js on lines 63..63
        src/Resources/assets/js/upload/upload.js on lines 69..69
        src/Resources/assets/js/upload/upload.js on lines 70..70

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

        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 too many return statements within this method.
        Open

                    return;
        Severity: Major
        Found in src/Core/Term/TermHook.php - About 30 mins to fix

          Avoid too many return statements within this method.
          Open

                      return $error;
          Severity: Major
          Found in src/Core/Field/Field.php - About 30 mins to fix

            Avoid too many return statements within this method.
            Open

                    return;
            Severity: Major
            Found in src/Core/Term/TermHook.php - About 30 mins to fix

              Avoid too many return statements within this method.
              Open

                      return 0;
              Severity: Major
              Found in src/Plugins/Search/SearchElastica.php - About 30 mins to fix

                Avoid too many return statements within this method.
                Open

                            return $return;
                Severity: Major
                Found in src/Plugins/Search/SearchElastica.php - About 30 mins to fix

                  Avoid too many return statements within this method.
                  Open

                          return $return;
                  Severity: Major
                  Found in src/Plugins/Search/SearchElastica.php - About 30 mins to fix

                    Avoid too many return statements within this method.
                    Open

                                return;
                    Severity: Major
                    Found in src/Core/Term/TermHook.php - About 30 mins to fix

                      Similar blocks of code found in 7 locations. Consider refactoring.
                      Open

                              _ol.$el.find(_ol.options.delallbutton).on('click', $.proxy(_ol.remove_all, _ol));
                      Severity: Major
                      Found in src/Resources/assets/js/social/social.js and 6 other locations - About 30 mins to fix
                      src/Resources/assets/js/link/link.js on lines 53..53
                      src/Resources/assets/js/link/link.js on lines 54..54
                      src/Resources/assets/js/link/link.js on lines 55..55
                      src/Resources/assets/js/social/social.js on lines 62..62
                      src/Resources/assets/js/upload/upload.js on lines 69..69
                      src/Resources/assets/js/upload/upload.js on lines 70..70

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

                      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

                      Similar blocks of code found in 7 locations. Consider refactoring.
                      Open

                              _ol.$el.find(_ol.options.addbutton).on('click', $.proxy(_ol.add_block, _ol));
                      Severity: Major
                      Found in src/Resources/assets/js/link/link.js and 6 other locations - About 30 mins to fix
                      src/Resources/assets/js/link/link.js on lines 54..54
                      src/Resources/assets/js/link/link.js on lines 55..55
                      src/Resources/assets/js/social/social.js on lines 62..62
                      src/Resources/assets/js/social/social.js on lines 63..63
                      src/Resources/assets/js/upload/upload.js on lines 69..69
                      src/Resources/assets/js/upload/upload.js on lines 70..70

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

                      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

                      Severity
                      Category
                      Status
                      Source
                      Language