retrieve($filename); // For now it's not an error. In the future it might be a required file. if ($xml !== FALSE) { // There's only one setting right now, and only one value. if ($xml->group[0]) { if ($xml->group[0]->attributes()) { $groupName = (string) $xml->group[0]->attributes()->name; if ($groupName) { $this->_settings['groupname'] = $groupName; } } } } return $this->_settings; } }