#145251 by chx: document that one needs to include the proper 'op' value in arrays passed to drupal_execute() to trigger the right action

6.x
Gábor Hojtsy 2007-09-25 15:14:37 +00:00
parent 5d1c888949
commit c9c86ebf84
1 changed files with 2 additions and 0 deletions

View File

@ -191,6 +191,7 @@ function form_set_cache($form_build_id, $form, $form_state) {
* $form_state['values']['name'] = 'robo-user';
* $form_state['values']['mail'] = 'robouser@example.com';
* $form_state['values']['pass'] = 'password';
* $form_state['values']['op'] = t('Create new account');
* drupal_execute('user_register', $form_state);
*
* // Create a new node
@ -199,6 +200,7 @@ function form_set_cache($form_build_id, $form, $form_state) {
* $form_state['values']['title'] = 'My node';
* $form_state['values']['body'] = 'This is the body text!';
* $form_state['values']['name'] = 'robo-user';
* $form_state['values']['op'] = t('Save');
* drupal_execute('story_node_form', $form_state, $node);
*/
function drupal_execute($form_id, &$form_state) {