Calling all Drupal developers!
Help us get this on the first page of Digg. DIGG NOW!
Help us get this on the first page of Digg. DIGG NOW!
avatar_selection_edit_list_form_submit($form, &$form_state)
contributions/avatar_selection/avatar_selection.module, line 1017
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.
$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.
<?php
function avatar_selection_edit_list_form_submit($form, &$form_state) {
$form_state['rebuild'] = TRUE;
}
?>