canax/htmlform

View on GitHub

Showing 37 of 37 total issues

Method __construct has 33 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    public function __construct(ContainerInterface $di)
    {
        parent::__construct($di);
        $this->form->create(
            [
Severity: Minor
Found in src/HTMLForm/FormModelSelectOption.php - About 1 hr to fix

    Method __construct has 33 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        public function __construct(ContainerInterface $di)
        {
            parent::__construct($di);
            $this->form->create(
                [
    Severity: Minor
    Found in src/HTMLForm/FormModelValidateNumber.php - About 1 hr to fix

      Method __construct has 31 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

          public function __construct(ContainerInterface $di)
          {
              parent::__construct($di);
      
              $license = "You must accept the <a href=http://opensource.org/licenses/GPL-3.0>license agreement</a>.";
      Severity: Minor
      Found in src/HTMLForm/FormModelCheckbox.php - About 1 hr to fix

        Method create has 30 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            public function create($form = [], $elements = [])
            {
                $defaults = [
                    // Always have an id
                    "id" => "anax/htmlform",
        Severity: Minor
        Found in src/HTMLForm/Form.php - About 1 hr to fix

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

              public function __construct(ContainerInterface $di)
              {
                  parent::__construct($di);
                  $this->form->create(
                      [
          Severity: Minor
          Found in src/HTMLForm/FormModelSelectOptionMultiple.php - About 1 hr to fix

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

                public function getHTML()
                {
                    $details = $this->getHTMLDetails();
                    extract($details);
            
            
            Severity: Minor
            Found in src/HTMLForm/FormElementCheckboxMultiple.php - About 1 hr to fix

              Function isValidCCNumber has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
              Open

              function isValidCCNumber( $ccNum ) {
                  $digitsOnly = "";
                  // Filter out non-digit characters
                  for( $i = 0; $i < strlen( $ccNum ); $i++ ) {
                      if( is_numeric( substr( $ccNum, $i, 1 ) ) ) {
              Severity: Minor
              Found in htdocs/_test/test-creditcard-checkout.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

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

              class CFormContact extends \Mos\HTMLForm\CForm {
              
              
                /** Create all form elements and validation rules in the constructor.
                 *
              Severity: Major
              Found in htdocs/_test/test-part1.php and 1 other location - About 1 hr to fix
              htdocs/_test/test-part2.php on lines 9..33

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

              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

              class CFormContact extends \Mos\HTMLForm\CForm {
              
              
                /** Create all form elements and validation rules in the constructor.
                 *
              Severity: Major
              Found in htdocs/_test/test-part2.php and 1 other location - About 1 hr to fix
              htdocs/_test/test-part1.php on lines 9..33

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

              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 callbackSubmit has 26 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                  public function callbackSubmit()
                  {
                      // These return a single value
                      // Type checkbox returns true if checked
                      $elements = [
              Severity: Minor
              Found in src/HTMLForm/FormModelElementsAll.php - About 1 hr to fix

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

                    public function __construct(ContainerInterface $di)
                    {
                        parent::__construct($di);
                        $this->form->create(
                            [
                Severity: Minor
                Found in src/HTMLForm/FormModelValidateCustom.php - About 1 hr to fix

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

                    protected function DoSubmit() {
                      $this->AddOutput("<p><i>DoSubmit(): Form was submitted. Do stuff (save to database) and return true (success) or false (failed processing form)</i></p>");
                      $this->AddOutput("<p><b>Name: " . $this->Value('name') . "</b></p>");
                      $this->AddOutput("<p><b>Email: " . $this->Value('email') . "</b></p>");
                      $this->AddOutput("<p><b>Phone: " . $this->Value('phone') . "</b></p>");
                  Severity: Minor
                  Found in htdocs/_test/test-part6.php and 1 other location - About 1 hr to fix
                  htdocs/_test/test-part5.php on lines 42..49

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

                  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

                    protected function DoSubmit() {
                      $this->AddOutput("<p><i>DoSubmit(): Form was submitted. Do stuff (save to database) and return true (success) or false (failed processing form)</i></p>");
                      $this->AddOutput("<p><b>Name: " . $this->Value('name') . "</b></p>");
                      $this->AddOutput("<p><b>Email: " . $this->Value('email') . "</b></p>");
                      $this->AddOutput("<p><b>Phone: " . $this->Value('phone') . "</b></p>");
                  Severity: Minor
                  Found in htdocs/_test/test-part5.php and 1 other location - About 1 hr to fix
                  htdocs/_test/test-part6.php on lines 42..49

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

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

                      public function getHTMLForElements($options = [])
                      {
                          $defaults = [
                              "use_buttonbar" => true,
                          ];
                  Severity: Minor
                  Found in src/HTMLForm/Form.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 validate has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
                  Open

                      public function validate($rules, $form = null)
                      {
                          $regExpEmailAddress = '/\b[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}\b/i';
                          $tests = [
                              'fail' => [
                  Severity: Minor
                  Found in src/HTMLForm/FormElement.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

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

                                  if (isset($element['validation'])) {
                                      $element['validation-pass'] = $element->Validate($element['validation'], $this);
                  
                                      if ($element['validation-pass'] === false) {
                                          $values[$elementName] = [
                  Severity: Minor
                  Found in src/HTMLForm/Form.php and 1 other location - About 30 mins to fix
                  src/HTMLForm/Form.php on lines 766..775

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

                  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 (isset($element['validation'])) {
                                      $element['validation-pass'] = $element->Validate($element['validation'], $this);
                  
                                      if ($element['validation-pass'] === false) {
                                          $values[$elementName] = [
                  Severity: Minor
                  Found in src/HTMLForm/Form.php and 1 other location - About 30 mins to fix
                  src/HTMLForm/Form.php on lines 714..724

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

                  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