跳转到主要内容
emal30 提交于 19 July 2016

drupal7 模块 表单 中 怎么使用 富文本编辑器 。

在本节中,我们将通过例子来展示内置的Drupal表单元素。   文本框有,富文本编辑器怎么掉用呢   Textfield(文本字段)        元素textfield的示例如下: $form['pet_name'] = array(     '#title' => t('Name'),     '#type' => 'textfield',     '#description' => t('Enter the name of your pet.'),     '#default_value' => $user->pet_name,     '#maxlength' => 32,     '#required' => TRUE,     '#size' => 15,     '#weight' => 5,     '#autocomplete_path' => 'pet/common_pet_names', );   $form['pet_weight'] = array(     '#title' => t('Weight'),     '#type' => 'textfield',     '#description' => t('Enter the weight of your pet in kilograms.'),     '#field_suffix' => t('kilograms'),     '#default_value' => $user->pet_weight,     '#size' => 4,     '#weight' => 10, );   使用HTML代码拼接吗? $form['disclaimer'] = array(     '#prefix' => '<div>',     '#value' => t('The information below is entirely optional.'),     '#suffix' => '</div>', );   请高手解答
Drupal 版本