JTable/toXML
From Joomla! Documentation
< API15:JTable
The "API15" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.
Description[edit]
Export item list to xml
[<! removed edit link to red link >]
<! removed transcluded page call, red link never existed >
Syntax[edit]
toXML($mapKeysToText=false)
Parameter Name | Default Value | Description |
---|---|---|
$mapKeysToText | false | Map foreign keys to text values |
Defined in[edit]
libraries/joomla/database/table.php
Importing[edit]
jimport( 'joomla.database.table' );
Source Body[edit]
function toXML( $mapKeysToText=false )
{
$xml = '<record table="' . $this->_tbl . '"';
if ($mapKeysToText)
{
$xml .= ' mapkeystotext="true"';
}
$xml .= '>';
foreach (get_object_vars( $this ) as $k => $v)
{
if (is_array($v) or is_object($v) or $v === NULL)
{
continue;
}
if ($k[0] == '_')
{ // internal field
continue;
}
$xml .= '<' . $k . '><![CDATA[' . $v . ']]></' . $k . '>';
}
$xml .= '</record>';
return $xml;
}
[<! removed edit link to red link >] <! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]