Меню обратного вызова
function content_form_select($id, $sid){
$type = check_content_type($sid);
if($type == 'video')
// Render content edit form
return drupal_get_form('content_video_form', $id, $sid);
else if($type == 'gallery')
// Render content edit form
return drupal_get_form('content_gallery_form', $id, $sid);
}
Генератор видеоформ
function content_video_form($id=null, $sid=null){
return array('#value' => 'Video form is getting rendered.');
}
Генератор форм галереи
function content_gallery_form($id=null, $sid=null){
return array('#value' => 'Gallery form is getting rendered.');
}
Не отображает форму таким образом