Skip to content
Snippets Groups Projects
Commit 8efbcdb2 authored by Demian Katz's avatar Demian Katz
Browse files

Allow parent data to be loaded at each step of the path stack.

- Provides more consistent/understandable behavior
parent 5741ec4e
Branches
Tags
No related merge requests found
...@@ -165,7 +165,10 @@ class ExtendedIni implements FileLoaderInterface ...@@ -165,7 +165,10 @@ class ExtendedIni implements FileLoaderInterface
$data = false; $data = false;
foreach ($this->pathStack as $path) { foreach ($this->pathStack as $path) {
if (file_exists($path . '/' . $filename)) { if (file_exists($path . '/' . $filename)) {
$current = $this->reader->getTextDomain($path . '/' . $filename); // Load current file with parent data, if necessary:
$current = $this->loadParentData(
$this->reader->getTextDomain($path . '/' . $filename)
);
if ($data === false) { if ($data === false) {
$data = $current; $data = $current;
} else { } else {
...@@ -177,8 +180,7 @@ class ExtendedIni implements FileLoaderInterface ...@@ -177,8 +180,7 @@ class ExtendedIni implements FileLoaderInterface
throw new InvalidArgumentException("Ini file '{$filename}' not found"); throw new InvalidArgumentException("Ini file '{$filename}' not found");
} }
// Load parent data, if necessary: return $data;
return $this->loadParentData($data);
} }
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment