我基本上创建了自己的界面,可以在Drupal 7中使用Ubercart选择不同的产品选项。 我想手动创建一个html表单,我将提交表示产品详细信息的post变量。
这可能吗?有没有这方面的文件?我希望这很简单。
答案 0 :(得分:1)
$items['mymodule/submit'] = array(
'page callback' => 'mymodule_submit',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);
现在在模块中创建函数mymodule_submit()并使用$ _POST变量检查值并采取相应的行动。