Как передать аргумент в форму?

Главные вкладки

Аватар пользователя Grok Grok 8 февраля 2011 в 14:37

Заранее прошу прощения за тупой вопрос)

Как можно передать параметры в форму (функцию формы).

Есть такая задача - нужно в форму отправки сообщения передать параметры 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

Комментарии

Аватар пользователя penexe penexe 8 февраля 2011 в 14:53
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', 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;
   
}

Аватар пользователя xxandeadxx xxandeadxx 8 февраля 2011 в 14:53
<?php
  $items 
['messages/new/%'] = array ( 
   ...
   
'page arguments' => array('bookabillboard_message_form_new'2), 
   ...
  );
?>
<?php
function bookabillboard_message_form_new(&$form_state$id) {
?>
Аватар пользователя Grok Grok 8 февраля 2011 в 16:28

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).

Аватар пользователя penexe penexe 8 февраля 2011 в 16:47

Grok wrote:
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).

function bookabillboard_message_form_new($form_state, $id) {
Аватар пользователя Grok Grok 8 февраля 2011 в 17:09

И как быть если мне надо два аргумента передать?

<?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