Skip to content
Snippets Groups Projects

Issue #3469644: Coding standards - PHPCS (fix failing pipeline)

Merged Issue #3469644: Coding standards - PHPCS (fix failing pipeline)
5 unresolved threads
5 unresolved threads

Closes #3469644

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
25 * @param \Drupal\Core\Form\FormBuilderInterface $form_builder
26 * The form builder service.
27 */
17 28 public function __construct(FormBuilderInterface $form_builder) {
18 29 $this->formBuilder = $form_builder;
19 30 }
20 31
21 32 /**
22 *
33 * {@inheritdoc}
23 34 */
24 35 public static function create(ContainerInterface $container) {
25 36 return new static(
26 $container->get('form_builder'),
27 );
37 $container->get('form_builder'),
  • 9 9 use Drupal\Core\StringTranslation\TranslationInterface;
    10 10
    11 11 /**
    12 *
    12 * Service to alter forms to hide submit buttons.
  • 25 52 }
    26 53
    27 54 /**
    55 * Alters forms by optionally hiding the submit button.
  • 53 82 }
    54 83
    55 84 /**
    85 * Attaches JavaScript and CSS libraries to forms.
  • 2 2
    3 3 /**
    4 4 * @file
    5 * {@inheritdoc}
    6 * Hide the submit button after clicked to prevent/reduce duplicate postings.
    7 *
    8 * Installation and update procedures are defined in this file.
    5 * Install, update and uninstall functions for the Hide Submit module.
    9 6 */
    10 7
    11 8 /**
    12 9 * Implements hook_uninstall().
    10 *
    11 * Hide the submit button after clicked to prevent/reduce duplicate postings.
  • added 1 commit

    Compare with previous version

  • merged

  • Please register or sign in to reply
    Loading