content); $i++) {
/**
* No need to check this conition for text boxes, as they do not correspond to
* HTML elements
*/
if (!is_a($tree->content[$i], 'TextBox')) {
if ($tree->content[$i]->get_css_property(CSS_POSITION) == POSITION_FOOTNOTE) {
$tree->content[$i]->setCSSProperty(CSS_POSITION, POSITION_STATIC);
$note_call =& BoxNoteCall::create($tree->content[$i], $pipeline);
$tree->content[$i] =& $note_call;
$pipeline->_addFootnote($note_call);
} else {
$this->process($tree->content[$i], $data, $pipeline);
};
};
};
};
return true;
}
}
?>