| Versionen | |
|---|---|
| drupal6 | update_xml_parser::data($parser, $data) |
modules/
<?php
function data($parser, $data) {
if ($this->current_tag && !in_array($this->current_tag, array('PROJECT', 'RELEASE', 'RELEASES', 'TERM', 'TERMS'))) {
$tag = strtolower($this->current_tag);
if (isset($this->current_object[$tag])) {
$this->current_object[$tag] .= $data;
}
else {
$this->current_object[$tag] = $data;
}
}
}
?>
Kommentare
Kommentar hinzufügen