Drupal 7 中文教程 联系我们 两步表单 “确认”页面回调
/**
	 * “确认”页面的回调函数
	 */
	function contactus_confirm_page(){
	  //我们为这个页面设置标题
	 drupal_set_title('联系我们');
	 
	 //这里首先作了判断,如果会话中没有设置contactus_form,返回contactus
	 if(empty($_SESSION['contactus_form'])){
	  drupal_goto('contactus');
	 }else{
	 }
 
      

