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

Added @parent_ini feature.

parent d1ccfba5
No related merge requests found
...@@ -159,7 +159,26 @@ class ExtendedIni implements FileLoaderInterface ...@@ -159,7 +159,26 @@ class ExtendedIni implements FileLoaderInterface
if ($data === false) { if ($data === false) {
throw new InvalidArgumentException("Ini file '{$filename}' not found"); throw new InvalidArgumentException("Ini file '{$filename}' not found");
} }
return $data;
// Load parent data, if necessary:
return $this->loadParentData($data);
}
/**
* Support method for loadLanguageFile: retrieve parent data.
*
* @param TextDomain $data TextDomain to populate with parent information.
*
* @return TextDomain
*/
protected function loadParentData($data)
{
if (!isset($data['@parent_ini'])) {
return $data;
}
$parent = $this->loadLanguageFile($data['@parent_ini']);
$parent->merge($data);
return $parent;
} }
/** /**
......
@parent_ini = "fake.ini"
test2 = "test 2"
\ No newline at end of file
@parent_ini = "child1.ini"
test1 = "test 1"
\ No newline at end of file
@parent_ini = "self-parent.ini"
string = "bad"
\ No newline at end of file
...@@ -108,6 +108,50 @@ class ExtendedIniTest extends \VuFindTest\Unit\TestCase ...@@ -108,6 +108,50 @@ class ExtendedIniTest extends \VuFindTest\Unit\TestCase
); );
} }
/**
* Test file with self as parent.
*
* @return void
*/
public function testSelfAsParent()
{
$pathStack = array(
realpath(__DIR__ . '/../../../../../../fixtures/language/base'),
);
$loader = new ExtendedIni($pathStack);
$result = $loader->load('self-parent', null);
$this->assertEquals(
array(
'@parent_ini' => 'self-parent.ini',
'string' => 'bad',
),
(array)$result
);
}
/**
* Test file with a chain of parents.
*
* @return void
*/
public function testParentChain()
{
$pathStack = array(
realpath(__DIR__ . '/../../../../../../fixtures/language/base'),
);
$loader = new ExtendedIni($pathStack);
$result = $loader->load('child2', null);
$this->assertEquals(
array(
'@parent_ini' => 'child1.ini',
'test1' => 'test 1',
'test2' => 'test 2',
'test3' => 'test three',
),
(array)$result
);
}
/** /**
* Test missing path stack. * Test missing path stack.
* *
......
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