Skip to content

Instantly share code, notes, and snippets.

View zetxek's full-sized avatar
😎
Time off work - time to play with pet projects (and AI 🤖)

Adrián Moreno Peña zetxek

😎
Time off work - time to play with pet projects (and AI 🤖)
View GitHub Profile
<?php
/**
* Implements hook_form_alter().
*/
function modulename_form_alter(&$form, &$form_state, $form_id) {
if (strpos($form_id, '_node_form') !== false ) {
// Add a cancel button.
$form['actions']['cancel'] = array(
'#type' => 'submit',