我在模块中看到了以下代码;这里发生了什么:
$element['location_settings'] = array(
'#type' => 'value',
'#value' => $element['#location_settings'],
);
答案 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使用,而且不会直接在网页上看到。