commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-new / civicrm / CRM / Core / CodeGen / Util / Xml.php
1 <?php
2
3 /**
4 * Class CRM_Core_CodeGen_Util_Xml
5 */
6 class CRM_Core_CodeGen_Util_Xml {
7 /**
8 * @param string $file
9 * Path to input.
10 *
11 * @return SimpleXMLElement|bool
12 */
13 public static function parse($file) {
14 $dom = new DomDocument();
15 $dom->load($file);
16 $dom->xinclude();
17 $xml = simplexml_import_dom($dom);
18 return $xml;
19 }
20
21 }