Drupal 7, $ output показывает строку "Array" на моей странице, я не знаю почему, это код:
Работает только так: return drupal_get_form('test_exp_form')
Но мне нужно добавить html и текст в мою переменную $ output, и я не могу просто вернуть форму.
function test_page() {
$output = '<div>Hello</div>';
$output = drupal_get_form('test_exp_form');
return $output;
}
function test_exp_form($form, &$form_stat) {
$form = array();
$form['example_textfield'] = array(
'#type' => 'textfield',
'#title' => t('Example Textfield'),
'#default_value' => 'some text',
);
return $form;
}