Domanda

I'm trying to investigate how to add functionality to a webforms form (want to add a lookup button to populate the form). The issue is that I don't seem to be be able to get hook_form_alter to work as I would expect.

function myModule_form_alter(&$form, &$form_state, $form_id) {
     $form['test'] = array('#markup' => 'testint 123');
}

I know that this would effect ALL forms as is. I'm keeping it simple while I test that it's working correctly.

I have a webforms form and would expect the markup to appear on the page, but it's not.

È stato utile?

Soluzione

Fresh boot this morning and it's now working. It may have been the cache...thanks

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top