Contributions API

Calling all Drupal developers!

Help us get this on the first page of Digg. DIGG NOW!

Modules in 6

avatar_selection_edit_list_form_submit

Definition

avatar_selection_edit_list_form_submit($form, &$form_state)
contributions/avatar_selection/avatar_selection.module, line 1017

Description

Submit the image list form in the Avatar Selection - 'Manage Avatars' page.

Function called when the Edit button is pressed. Practically it sets the $form_state['rebuild'] value to true, which will determine the rebuilding of the page.

Parameters

$form General variable used in drupal, defining the structure & the fields of a form.

&$form_state General reference, used to control the processing of the form.

Code

<?php
function avatar_selection_edit_list_form_submit($form, &$form_state) {
  $form_state['rebuild'] = TRUE;
}
?>