Skip to content

Instantly share code, notes, and snippets.

View iberezovchuk's full-sized avatar
🐘
\m/

Igor Berezovchuk iberezovchuk

🐘
\m/
View GitHub Profile
@iberezovchuk
iberezovchuk / drupal-8.form.reset-button.php
Last active April 25, 2019 13:31 — forked from RuZniki/drupal-8.form.reset-button.php
Drupal 8 Adding a Reset Button to a form
<?php
/**
* Implements template_preprocess_form().
*/
function TEMPLATE_preprocess_form(&$vars) {
$vars['form']['actions']['reset'] = [
'#type' => 'html_tag',
'#tag' => 'input',
'#attributes' => [
'class' => 'button',