关于如何使用formalterhook的Drupal示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于如何使用formalterhook的Drupal示例相关的知识,希望对你有一定的参考价值。
Resizing fields using a custom moduleYou 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
function mysite_form_alter(&$form, &$form_state, $form_id) { switch ($form_id) { case 'user_profile_form': $form['account']['name']['#size'] = 30; $form['account']['mail']['#size'] = 30; break; } }
以上是关于关于如何使用formalterhook的Drupal示例的主要内容,如果未能解决你的问题,请参考以下文章