语法错误,意外的 '{' PHP Drupal 模块

发布于 2024-12-10 22:04:25 字数 384 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

鹿港巷口少年归 2024-12-17 22:04:25

您遗漏了 function 声明:

function 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";
  }  
}

另一个小注意事项,您应该通过引用传入 $form_state (&$form_state),以防万一您打算在挂钩中使用它(请参阅 hook_form_alter() 文档)。

You've left out the function declaration:

function 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";
  }  
}

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 (see hook_form_alter() documentation).

夏末染殇 2024-12-17 22:04:25

您的...函数前面缺少 function 关键字。

There's missing function keyword in front of your... function.

空城仅有旧梦在 2024-12-17 22:04:25

您需要在函数名称之前添加关键字 function

You need the keyword function before your function name

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文