Drupal: run custom code when a form is submitted - drupal

how can I run specific code when a form is submitted in Drupal ?
I'm using hook_form_alter to edit the form, but I actually need to collect the data inserted by user and run code when the user click on "Save / Register" etc
thanks

You can add callbacks to the submit array. It goes something like this:
function myform_form_alter(&$form, &$form_state, $form_id) {
if($form_id == 'some_form') {
$form['#submit'][] = 'mycallback';
}
}
function mycallback(&$form, &$form_state) {
// do stuff
}

Try adding the following function:
function myform_form_submit($form_id, $form_values){
print_r($form_values);
// custom code
}
worked for me. Hope it helps :)

Related

How to locate the file who handles submit button in Drupal 7

I'm new to Drupal 7, it's weird to me compared to traditional programming like native PHP, MVC frameworks, Node.js, .Net, etc. Please help me locate the file and/or function that handles the submit button. I have this tpl file already
<form id="com_id" method="post" action="">
...
<button type="submit" id="saveBtn" class="hidden btn-save" name="btnSave"><?php echo t('SAVE'); ?></button>
As you can see there's no value in form's action. In Laravel MVC, it's easy,
Route::get('/the_path', 'RoutinesController#theMethod');
1.Create a custom module
2.Create a form in it example:
function mymodule_example_form($form, &$form_state) {
//build your form using the form api documentation, linked example and your needs
}
3.Add validation for the form:
function mymodule_example_form_validate($form, &$form_state) {
//your validation goes here
}
4.Add submit function to it
function mymodule_example_form_submit($form, &$form_state) {
//do stuff on submit here
}
Not sure where you want to print it but you can always put it in a custom block and render it from there or attach it to a node using hooks (mymodule_node_view) there are many ways but if you need more details be specific and we will help you out and don't forget to turn the module on once you created it :)
UPDATE: If the form already exists use hook form alter:
function your_module_form_alter(&$form, &$form_state, $form_id) {
if ($form_id == 'your_form_ID') {
$form['#submit'][] = 'your_module_custom_form_submit';
}
function your_module_custom_form_submit(&$form, &$form_state, $form_id) {
//do stuff here on submit
}

Display a thanks page in Drupal quiz module

I have the Quiz module installed in my drupal website. My client want to see a thanks page rather than a Quiz Result page, once the Quiz is completed.
I haven't really used Quiz module soecifically, but I surmise can pass it a form state redirect using hook_form_alter. Something like:
function MODULE_form_alter(&$form, &$form_state, $form_id)
{
if($form_id == 'form_id')
{
$form['actions']['submit']['#submit'][] = 'MODULE_form_id_submit_handler';
}
}
Then catch that with a custom submit handler:
function MODULE_form_id_submit_handler($form, &$form_state)
{
$form_state['redirect'] = 'path/to/thanks/page';

After submit action in form_alter

i need to insert data in my tables after user creation. I think to use hook_form_alter() for $form_id == "user_register" but I don't know how to say "after you created user, do this."
How can I do it in hook_form_alter()?
You can add custom submit handler to forms like this.
function hook_form_user_register_alter(&$form, &$form_state) {
// ...
$form['#submit'][] = 'yourModule_user_register_submit';
}
function yourModule_user_register_submit($form, &$form_state) {
// do what you want to do after registration
}
I'd also recommend to use Drupal's Triggers & Actions to achieve this. AFAIK there was a bug with one of the triggers that fire after user registration. Don't know if that has been fixed.

Double output within Drupal function

I'm going crazy
function module_form_alter(&$form, $form_state, $form_id) {
// Nothing here
$var = 'bla-bla';
print_r($var);
// Nothing here
}
I see on the screen bla-blabla-bla
WHY?
You probably have two forms on the page. Try printing (better yet, install devel and use dpm) $form_id instead of $var and see which forms are involved.
hook_form_alter works on every form. You probably have the search form in this page, so it prints the text twice (one for every form).
In order to add changes to only one form, use the $form_id argument like this:
function module_form_alter(&$form, $form_state, $form_id) {
if($form_id == 'YOURFORMID') {
$var = 'bla-bla';
print_r($var);
}
}
change YOURFORMID to your form_id.
You can find the form_id by looking on the HTML of the form output and search the value of the input that his name is 'form_id'.

drupal form alter

I'm developing a module which alter display of add/edit node forms. I'm a beginner in module development.
I have written following code, it is not working properly. Please tell me what's wrong with this?
function hook_form_alter(&$form, $form_state, $form_id) {
if ($form_id == 'node_form') {
drupal_set_message(t('some message.'));
}
}
This is for drupal 6.
In addition, the node add/edit forms have content-type specific IDs. so story nodes would be:
function mymodule_form_alter(&$form, $form_state, $form_id) {
if ($form_id == 'story_node_form') {
drupal_set_message(t('Editing a story node!'));
}
}
If you're looking to catch every node edit form, regardless of type, try this:
function mymodule_form_alter(&$form, $form_state, $form_id) {
if (isset($form['#node']) && $form_id == $form['#node']->type .'_node_form') {
drupal_set_message(t('Editing a node!'));
}
}
you should not call your function "hook_form_alter" but rather "yourmodule_form_alter". yourmodule should be the name of your module file, so if your module is called "hello" the function name should be "hello_form_alter".
You need to understand the hook system that Drupal uses if you want to do module development. When a hook is implemented somewhere in Drupal, it's called hook_something. The way this works is that every time a module wants to implement the hook, you need to replace the 'hook' with the 'modelname'. Drupal will know it's an instance of that hook and call it as such. Drupal also uses the same system in the theming layer, with a twist. As it will look at the different theming functions and prioritize them based on a ranking system, that enabled themes to override the way modules output data.
function hook_form_alter(&$form, $form_state, $form_id) {
if ($form_id == 'node_form') {
drupal_set_message(t('some message.'));
}
}
First you must "hook" keyword to your module keyword.. lets suppose your module name is "contact_us" then
function contact_us_form_alter(&$form, $form_state, $form_id) {
Now this function has three variable
$form
$form_id
$form_state
Most important variable during form alter is $form_id which basically note down which form is load in a page.
function contact_us_form_alter(&$form, $form_state, $form_id) {
print_r($form_id);exit; // Used to find the form id
}
after you find the form_id
function contact_us_form_alter(&$form, $form_state, $form_id) {
if($form_id=='contact_us_form')
// Do your stuff
}
Note:check you have properly write custom module and enable it.. also clear cache

Resources