L'API del modulo utilizza un # davanti a tutte le proprietà, per distinguere tra proprietà ed elementi figlio. Nel codice seguente, $form['choice_wrapper']['choice']
è un elemento figlio, mentre $form['choice_wrapper']['#tree']
è una proprietà.
// 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',
);
Tutte queste proprietà sono elencate nel riferimento API del modulo . Esistono molte proprietà, ma riguardano il rendering, la convalida e l'invio.
Il motivo per utilizzare un prefisso per le proprietà è riuscire a filtrare rapidamente le proprietà dagli elementi figlio, che è utile quando devono essere renderizzate, ad esempio con drupal_render () , che contiene il seguente codice.
// 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 guardi element_children () , noterai che il codice per filtrare le proprietà è il seguente.
// 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;
}
}
}