JFactory/getXMLParser
From Joomla! Documentation
< API16:JFactory
The "API16" 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]
Get an XML document
<! removed transcluded page call, red link never existed >
Syntax[edit]
static getXMLParser($type= '', $options=array())
Parameter Name | Default Value | Description |
---|---|---|
$type | The type of xml parser needed 'DOM', 'RSS' or 'Simple' | |
$options | array() | string ['rssUrl'] the rss url to parse when using "RSS" string ['cache_time'] with 'RSS' - feed cache time. If not defined defaults to 3600 sec |
Returns[edit]
object Parsed XML document object
Defined in[edit]
libraries/joomla/factory.php
Importing[edit]
jimport( 'joomla.factory' );
Source Body[edit]
public static function getXMLParser($type = '', $options = array())
{
$doc = null;
switch (strtolower($type))
{
case 'rss' :
case 'atom' :
{
$cache_time = isset($options['cache_time']) ? $options['cache_time'] : 0;
$doc = JFactory::getFeedParser($options['rssUrl'], $cache_time);
} break;
case 'simple':
// JError::raiseWarning('SOME_ERROR_CODE', 'JSimpleXML is deprecated. Use JFactory::getXML instead');
jimport('joomla.utilities.simplexml');
$doc = new JSimpleXML();
break;
case 'dom':
JError::raiseWarning('SOME_ERROR_CODE', 'DommitDocument is deprecated. Use DomDocument instead');
$doc = null;
break;
throw new JException('DommitDocument is deprecated. Use DomDocument instead');
default :
$doc = null;
}
return $doc;
}
<! removed transcluded page call, red link never existed >
Examples[edit]
Code Examples[edit]