Drupalフォームを表示する前に、カスタムHTML/処理コードを表示する必要があります。カスタムHTMLとフォームの両方を返すにはどうすればよいですか?私が持っているコードは次のとおりです。
function myfunction() {
global $base_path, $base_url;
$output = ""; // Clear the variable, just in case
include ('includes/SOME_HTML_OUTPUT.inc');
return $output; //NOT GOING TO WORK
return drupal_get_form('my_form');
}