语法错误,意外的 '{' PHP Drupal 模块
Parse error: syntax error, unexpected '{' in C:\xampp\htdocs\atins\drupal\sites\all\modules\my_module\my_module.module on line 3
my_module_form_alter(&$form, $form_state, $form_id){
if($form_id == "webform-client-form-57--3"){
$form["webform-component-email-address"]["#default_value"] = "BLAH BLAH";
}
}
我不知道出了什么问题。 :/
Parse error: syntax error, unexpected '{' in C:\xampp\htdocs\atins\drupal\sites\all\modules\my_module\my_module.module on line 3
my_module_form_alter(&$form, $form_state, $form_id){
if($form_id == "webform-client-form-57--3"){
$form["webform-component-email-address"]["#default_value"] = "BLAH BLAH";
}
}
I cant figure out whats wrong. :/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您遗漏了
function
声明:另一个小注意事项,您应该通过引用传入
$form_state
(&$form_state
),以防万一您打算在挂钩中使用它(请参阅hook_form_alter()
文档)。You've left out the
function
declaration:Another small note, you should be passing in
$form_state
by reference (&$form_state
), just in case you plan to use it in your hook (seehook_form_alter()
documentation).您的...函数前面缺少
function
关键字。There's missing
function
keyword in front of your... function.您需要在函数名称之前添加关键字
function
You need the keyword
function
before your function name