API16

Difference between revisions of "JFactory/getXML"

From Joomla! Documentation

< API16:JFactory
(New page: ===Description=== Reads a XML file. <span class="editsection" style="font-size:76%;"> <nowiki>[</nowiki>Edit Descripton<nowiki>]</nowiki> </span> {...)
 
m (preparing for archive only)
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
Reads a XML file.
 
Reads a XML file.
  
<span class="editsection" style="font-size:76%;">
 
<nowiki>[</nowiki>[[Description:JFactory/getXML|Edit Descripton]]<nowiki>]</nowiki>
 
</span>
 
  
{{Description:JFactory/getXML}}
+
 
 +
<! removed transcluded page call, red link never existed >
  
 
===Syntax===
 
===Syntax===
Line 74: Line 72:
 
</source>
 
</source>
  
<span class="editsection" style="font-size:76%;">
+
 
<nowiki>[</nowiki>[[SeeAlso:JFactory/getXML|Edit See Also]]<nowiki>]</nowiki>
+
<! removed transcluded page call, red link never existed >
</span>
 
{{SeeAlso:JFactory/getXML}}
 
  
 
===Examples===
 
===Examples===
<CodeExamplesForm />
+
=== Code Examples ===
 
<dpl>
 
<dpl>
 
  noresultsheader=\n
 
  noresultsheader=\n
 
  category=getXML
 
  category=getXML
 
  category=JFactory
 
  category=JFactory
  category=CodeExample
+
  namespace=CodeExample
 
  category=MethodExample
 
  category=MethodExample
 
  include=*
 
  include=*
 
  format= ,,,
 
  format= ,,,
 
</dpl>
 
</dpl>
 +
[[Category:Archived pages API16]]

Latest revision as of 20:39, 24 March 2017

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]

Reads a XML file.


<! removed transcluded page call, red link never existed >

Syntax[edit]

static getXML($data, $isFile=true)
Parameter Name Default Value Description
$data $data Full path and file name.
$isFile true false to load a string.

Returns[edit]

mixed on success | false on error.

Defined in[edit]

libraries/joomla/factory.php

Importing[edit]

jimport( 'joomla.factory' );

Source Body[edit]

public static function getXML($data, $isFile = true)
{
        jimport('joomla.utilities.xmlelement');

        // Disable libxml errors and allow to fetch error information as needed
        libxml_use_internal_errors(true);

        if($isFile)
        {
                // Try to load the xml file
                $xml = simplexml_load_file($data, 'JXMLElement');
        }
        else
        {
                // Try to load the xml string
                $xml = simplexml_load_string($data, 'JXMLElement');
        }

        if( ! $xml)
        {
                // There was an error
                JError::raiseWarning(100, JText::_('Failed loading XML file'));

                if($isFile)
                {
                        JError::raiseWarning(100, $data);
                }

                foreach(libxml_get_errors() as $error)
                {
                        JError::raiseWarning(100, 'XML: '.$error->message);
                }
        }

        return $xml ;
}


<! removed transcluded page call, red link never existed >

Examples[edit]

Code Examples[edit]