Возможно, у вас есть 'обратный вызов страницы' с такой функцией в вашем hook_menu:
$items['myProject/form/%'] = array(
'title' => t('Get a form'),
'description' => 'Get form',
'access callback' => 'user_access',
'page callback' => '_get_form',
'page arguments' => array(2),
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);
А может быть, вы определили эту функцию:
function _get_form($form_id){
return "Hello World with " . $form_id; //returns the whole page with this text
}
Если вы измените return
на print
, Drupal вернет только этот текст, например:
function _get_form($form_id){
print "Hello World with " . $form_id; //returns only this text
}
Надеюсь, это поможет