This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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', |
NewerOlder