public function __construct()
 {
     $this->setXMLfile(Configuration::getXMLPath() . $this->filename);
     $this->parsedData = $this->getParsedXML();
     if ($this->module_format == null) {
         $this->module_format = $this->retrieveAll();
     }
 }
 /**
  * Class constructor initiates parent class and sends all the
  * required parameters to the parent
  */
 public function __construct()
 {
     parent::__construct(Configuration::getXMLPath() . $this->xml_file);
 }
 /**
  * Class constructor initiates parent class and sends all the
  * required parameters to the parent
  */
 public function __construct()
 {
     $this->setXMLfile(Configuration::getXMLPath() . $this->filename);
     $this->parsedData = $this->getParsedXML();
 }