0

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

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

1 回答 1

0

此代码是表单的一部分。它是一个名为“location_settings”的表单元素,具有类型值。这是Drupal Forms API 参考中值类型的描述。

Description: A form value that is internal to the form
and never displayed to the screen.

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

于 2013-11-08T20:24:58.200 回答