TeaThemeOptions/TeaThemeOptions

View on GitHub

Showing 177 of 177 total issues

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

        else if ('left' == _ol.options.position) {
            _ol.$tooltip.addClass('arrow-right');

            //left
            return {
Severity: Major
Found in src/Resources/assets/js/tooltip/tooltip.js and 1 other location - About 2 hrs to fix
src/Resources/assets/js/tooltip/tooltip.js on lines 171..179

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

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

        else {
            _ol.$tooltip.addClass('arrow-left');

            //right
            return {
Severity: Major
Found in src/Resources/assets/js/tooltip/tooltip.js and 1 other location - About 2 hrs to fix
src/Resources/assets/js/tooltip/tooltip.js on lines 162..170

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

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

Method prepareField has 50 lines of code (exceeds 25 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/Maps.php - About 2 hrs to fix

    Method searchSuggest has 49 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function searchSuggest($type, $post, $tags)
        {
            //Check page
            if (!is_search()) {
                return;
    Severity: Minor
    Found in src/Plugins/Search/SearchElastica.php - About 1 hr to fix

      Function getFieldValue has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          public static function getFieldValue($details, $default, $id = '', $multiple = false)
          {
              //Build details
              $post = isset($details['post']) ? $details['post'] : 0;
              $prefix = isset($details['prefix']) ? $details['prefix'] : '';
      Severity: Minor
      Found in src/Core/Field/Field.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

      Function hex2rgb has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
      Open

          protected function hex2rgb($hexcolor) 
          {
              preg_match("/^#{0,1}([0-9a-f]{1,6})$/i", $hexcolor, $match);
      
              if (!isset($match[1])) {
      Severity: Minor
      Found in src/Core/Field/Social.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 searchChildren has 47 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function searchChildren($type, $parent, $order = 'desc')
          {
              //Check page
              if (is_search()) {
                  return;
      Severity: Minor
      Found in src/Plugins/Search/SearchElastica.php - About 1 hr to fix

        Method makeHooks has 47 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function makeHooks()
            {
                //Admin panel
                if (!OLZ_ISADMIN) {
                    return;
        Severity: Minor
        Found in src/Core/Hook/HookBackend.php - About 1 hr to fix

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

              OlSocial.prototype.remove_all = function (e){
                  e.preventDefault();
                  var _ol = this;
          
                  //iterate on all
          Severity: Major
          Found in src/Resources/assets/js/social/social.js and 2 other locations - About 1 hr to fix
          src/Resources/assets/js/link/link.js on lines 111..117
          src/Resources/assets/js/upload/upload.js on lines 138..144

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

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

              OlLink.prototype.remove_all = function (e){
                  e.preventDefault();
                  var _ol = this;
          
                  //iterate on all
          Severity: Major
          Found in src/Resources/assets/js/link/link.js and 2 other locations - About 1 hr to fix
          src/Resources/assets/js/social/social.js on lines 82..88
          src/Resources/assets/js/upload/upload.js on lines 138..144

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

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

              OlUpload.prototype.remove_all = function (e){
                  e.preventDefault();
                  var _ol = this;
          
                  //iterate on all
          Severity: Major
          Found in src/Resources/assets/js/upload/upload.js and 2 other locations - About 1 hr to fix
          src/Resources/assets/js/link/link.js on lines 111..117
          src/Resources/assets/js/social/social.js on lines 82..88

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

          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

          Method hex2rgb has 46 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

              protected function hex2rgb($hexcolor) 
              {
                  preg_match("/^#{0,1}([0-9a-f]{1,6})$/i", $hexcolor, $match);
          
                  if (!isset($match[1])) {
          Severity: Minor
          Found in src/Core/Field/Social.php - About 1 hr to fix

            Method defineLabels has 45 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                public static function defineLabels($ctn)
                {
                    return array(
                        'name' => $ctn['name'],
                        'singular_name' => isset($ctn['singular_name']) && !empty($ctn['singular_name']) 
            Severity: Minor
            Found in src/Core/PostType/PosttypeHook.php - About 1 hr to fix

              Method hookFieldsDisplay has 45 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function hookFieldsDisplay()
                  {
                      //Defintions
                      $slug = isset($_GET['post_type']) ? $_GET['post_type'] : '';
                      $contents = array();
              Severity: Minor
              Found in src/Core/PostType/PosttypeHook.php - About 1 hr to fix

                Method hookCleanBodyClass has 44 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                    public function hookCleanBodyClass($classes, $class)
                    {
                        //Remove unecessary CSS classes generated by WORDPRESS on authors pages
                        if (isset($classes['author'])) {
                            //Get author
                Severity: Minor
                Found in src/Core/Hook/HookFrontend.php - About 1 hr to fix

                  Method prepareField has 43 lines of code (exceeds 25 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 1 hr to fix

                    Method hookAdminMenu has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                        public function hookAdminMenu()
                        {
                            //Admin panel
                            if (!OLZ_ISADMIN) {
                                return;
                    Severity: Minor
                    Found in src/Core/Menu/MenuEngine.php - About 1 hr to fix

                      Function exports has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      module.exports = function (grunt){
                        //------ [CONFIGURATION] ------//
                        var Helpers = require('./tasks/helpers'),
                          filterAvailable = Helpers.filterAvailableTasks,
                          _ = grunt.util._,
                      Severity: Minor
                      Found in Gruntfile.js - About 1 hr to fix

                        Method getField has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                            public static function getField($type, $id, $special = array(), $ids = array())
                            {
                                //Admin panel
                                if (!OLZ_ISADMIN) {
                                    return false;
                        Severity: Minor
                        Found in src/Core/Field/Field.php - About 1 hr to fix

                          Function _attach_items has 41 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                              OlUpload.prototype._attach_items = function (_attach){
                                  var _ol = this;
                          
                                  //check attachments
                                  if (!_attach.length) {
                          Severity: Minor
                          Found in src/Resources/assets/js/upload/upload.js - About 1 hr to fix
                            Severity
                            Category
                            Status
                            Source
                            Language