Заранее прошу прощения за тупой вопрос)
Как можно передать параметры в форму (функцию формы).
Есть такая задача - нужно в форму отправки сообщения передать параметры Id - пользователя которому будет отослано сообщение
то есть
/message/new/123 - пользователю с id -123
<?php
function bookabillboard_messages_menu() {
$items ['messages/new'] = array (
'title' => 'New messages',
'description' => 'New messege',
'page callback' => 'drupal_get_form',
'page arguments' => array('bookabillboard_message_form_new'),
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
returnt $item;
}
function bookabillboard_message_form_new($form,&$form_state) {
$form['from_user']=array(
'#title'=>'From user',
'#type'=>'item',
'#description'=> 'From'
);
$form['to_user']=array(
'#title'=>'To user',
'#type'=>'item',
'#description'=> 'To User'
);
$form['message_theme']=array(
'#title'=>'Theme message',
'#type'=>'textfield'
);
$form['message_body']=array(
'#title'=>'Message',
'#type'=>'textarea'
);
$form['send_button']=array(
'#type'=>'button',
'#value'=>'send'
);
return $form;
}
?>
как сделать так чтобы в у кнопки button можно было добавить атрибут onClick="send_user('123')" ???
Вобщем нужно чтобы в фунцуии созания формы были доступны переменные из hook_menu
Комментарии
$items ['messages/new/%'] = array ( //
'title' => 'New messages',
'description' => 'New messege',
'page callback' => 'drupal_get_form',
'page arguments' => array('bookabillboard_message_form_new', 2), //
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
returnt $item;
}
function bookabillboard_message_form_new(&$form_state, $uid) { //
$form['from_user']=array(
'#title'=>'From user',
'#type'=>'item',
'#description'=> 'From'
);
$form['to_user']=array(
'#title'=>'To user',
'#type'=>'item',
'#description'=> 'To User'
);
$form['message_theme']=array(
'#title'=>'Theme message',
'#type'=>'textfield'
);
$form['message_body']=array(
'#title'=>'Message',
'#type'=>'textarea'
);
$form['send_button']=array(
'#type'=>'button',
'#value'=>'send'
'#attributes' => array('onClick' => "send_user('". $uid ."')"), //
);
return $form;
}
<?php
$items ['messages/new/%'] = array (
...
'page arguments' => array('bookabillboard_message_form_new', 2),
...
);
?>
<?php
function bookabillboard_message_form_new(&$form_state, $id) {
?>
Warning: Parameter 1 to bookabillboard_message_form_new() expected to be a reference, value given in drupal_retrieve_form() (line 771 of /Users/abodyakin/Projects/book-a-billboard.local/public_html/includes/form.inc).
Не могли бы вы пояснить "почему?" или дать ссылочку почитать об этом. И вообще про $form_stage
И как быть если мне надо два аргумента передать?
<?php
$items ['messages/new/%/%'] = array (
...
'page arguments' => array('bookabillboard_message_form_new', 2, 3),
...
);
?>
<?php
function bookabillboard_message_form_new(&$form_state, $id, $second_id) {
?>
в одном из параметров передается array
И как передать аргумент если функция формы не является аргументом к drupal_get_form через меню?