关于如何使用formalterhook的Drupal示例

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于如何使用formalterhook的Drupal示例相关的知识,希望对你有一定的参考价值。

Resizing fields using a custom module

You could also resize the field using a custom module.
For example, if you created mysite.module, you could use something like this to reduce the field size to 30 characters
  1. function mysite_form_alter(&$form, &$form_state, $form_id)
  2. {
  3. switch ($form_id)
  4. {
  5. case 'user_profile_form':
  6. $form['account']['name']['#size'] = 30;
  7. $form['account']['mail']['#size'] = 30;
  8. break;
  9. }
  10. }

以上是关于关于如何使用formalterhook的Drupal示例的主要内容,如果未能解决你的问题,请参考以下文章

如何在 C# .NET 中反序列化复杂的 JSON 对象?

android 中有两个列表视图的活动

Drupal 远程代码执行漏洞(CVE-2018-7602)

Drupal 7 列出当前用户所属的有机组

aliyun 主机Nginx 上配置Drupal 伪静态

是否有关于如何使用 AREL 或参考文档的教程?