A API do formulário usa um # na frente de todas as propriedades, para fazer uma distinção entre propriedades e elementos filhos. No código a seguir, $form['choice_wrapper']['choice']
é um elemento filho, enquanto $form['choice_wrapper']['#tree']
é uma propriedade.
// 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 essas propriedades estão listadas na referência da API do formulário . Existem muitas propriedades, mas são todas sobre renderização, validação e envio.
O motivo para usar um prefixo para propriedades é poder filtrar rapidamente as propriedades dos elementos filhos, o que é útil quando eles precisam ser renderizados, por exemplo, com drupal_render () , que contém o código a seguir.
// 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]);
}
}
Se você observar element_children () , notará que o código para filtrar as propriedades é o seguinte.
// 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;
}
}
}