El formulario API utiliza un # delante de todas las propiedades, para hacer una distinción entre propiedades y elementos secundarios. En el siguiente código, $form['choice_wrapper']['choice']
es un elemento hijo, mientras que $form['choice_wrapper']['#tree']
es una propiedad.
// Add a wrapper for the choices and more button.
$form['choice_wrapper'] = array(
'#tree' => FALSE,
'#weight' => -4,
'#prefix' => '<div class="clearfix" id="poll-choice-wrapper">',
'#suffix' => '</div>',
);
// Container for just the poll choices.
$form['choice_wrapper']['choice'] = array(
'#prefix' => '<div id="poll-choices">',
'#suffix' => '</div>',
'#theme' => 'poll_choices',
);
Todas esas propiedades se enumeran en la referencia de API de formulario . Hay muchas propiedades, pero se trata de renderizar, validar y enviar.
La razón para usar un prefijo para las propiedades es poder filtrar rápidamente las propiedades de los elementos secundarios, lo cual es útil cuando se necesitan renderizar, por ejemplo con drupal_render () , que contiene el siguiente código.
// Get the children of the element, sorted by weight.
$children = element_children($elements, TRUE);
// Initialize this element's #children, unless a #pre_render callback already
// preset #children.
if (!isset($elements['#children'])) {
$elements['#children'] = '';
}
// Call the element's #theme function if it is set. Then any children of the
// element have to be rendered there.
if (isset($elements['#theme'])) {
$elements['#children'] = theme($elements['#theme'], $elements);
}
// If #theme was not set and the element has children, render them now.
// This is the same process as drupal_render_children() but is inlined
// for speed.
if ($elements['#children'] == '') {
foreach ($children as $key) {
$elements['#children'] .= drupal_render($elements[$key]);
}
}
Si observa element_children () , notará que el código para filtrar las propiedades es el siguiente.
// Filter out properties from the element, leaving only children.
$children = array();
$sortable = FALSE;
foreach ($elements as $key => $value) {
if ($key === '' || $key[0] !== '#') {
$children[$key] = $value;
if (is_array($value) && isset($value['#weight'])) {
$sortable = TRUE;
}
}
}