【发布时间】:2011-05-21 20:33:27
【问题描述】:
在 Drupal 中,在自定义模块中的 textarea 上,如何以编程方式关闭 tinymce 编辑器 (tinytinymce)?
$form['subject'] = array(
'#type' => 'textfield',
'#title' => t('Please Enter Subject'),
'#required' => TRUE,
'#weight' => 5,
'#description' => t('some description'),
'#suffix' => 'a suffix',
);
【问题讨论】: