Subversion Repositories oidplus

Compare Revisions

Regard whitespace Rev 631 → Rev 632

/trunk/includes/classes/OIDplusPluginManifest.class.php
21,6 → 21,7
 
class OIDplusPluginManifest {
 
private $manifestFile = null;
private $rawXML = null;
 
// All plugins
104,6 → 105,10
return $this->jsFilesSetup;
}
 
public function getManifestFile(): string {
return $this->manifestFile;
}
 
public function getRawXml(): SimpleXMLElement {
return $this->rawXML;
}
125,6 → 130,7
$xmldata = @simplexml_load_file($filename);
if ($xmldata === false) return false;
 
$this->manifestFile = $filename;
$this->rawXML = $xmldata;
 
// The following attributes are available for every plugin