不确定这个Drupal模块代码的作用

时间:2013-11-08 20:19:37

标签: drupal

我在模块中看到了以下代码;这里发生了什么:

$element['location_settings'] = array(
  '#type' => 'value',
  '#value' => $element['#location_settings'],
);

1 个答案:

答案 0 :(得分:0)

此代码是表单的一部分。它是一个名为“location_settings”的表单元素,其类型为value。以下是Drupal Forms API reference

中值类型的说明
Description: A form value that is internal to the form
and never displayed to the screen.

此代码存储在表单数据中,可能会被javascript使用,而且不会直接在网页上看到。