构建后在Drupal中的使用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了构建后在Drupal中的使用相关的知识,希望对你有一定的参考价值。
function yourmodulename_form_alter(&$form, $form_state, $form_id) { if($form_id == 'thisformid'){ $form['field']['#prefix'] = 'This text gets overwritten by the after build'; $form['#after_build'][] = 'yourmodulename_after_build'; //Calls function //drupal_add_css('hello.css'); This line does not work when validation fails } } function yourmodulename_after_build($form, &$form_state) { $form['field']['#prefix'] = 'This text will rule them all!'; drupal_add_css('hello.css'); //This line works even after validation fails. return $form; }
以上是关于构建后在Drupal中的使用的主要内容,如果未能解决你的问题,请参考以下文章
Drupal 6 中的自定义搜索表单:视图/面板还是自定义 sql?