关于如何使用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示例的主要内容,如果未能解决你的问题,请参考以下文章