assertEquals(
"<a attr='value'>test</a>",
PMA_lang("test")
);
$GLOBALS["strConfiglangKeyFooBar"] = "[em]test[/em]";
$this->assertEquals(
"<a attr='value'>test</a>",
PMA_lang("langKeyFooBar")
);
$this->assertEquals(
"1988-08-01",
PMA_lang("%04d-%02d-%02d", "1988", "8", "1")
);
}
/**
* Test for PMA_langName
*
* @return void
* @test
*/
public function testLangName()
{
$canonicalPath = "Servers/1/2test";
$this->assertEquals(
"Servers_2test_name",
PMA_langName($canonicalPath)
);
$this->assertEquals(
"returnsDefault",
PMA_langName($canonicalPath, "name", "returnsDefault")
);
$GLOBALS["strConfigServers_2test_name"] = "msg";
$this->assertEquals(
"msg",
PMA_langName($canonicalPath)
);
$GLOBALS["strConfigServers_2test_desc"] = "msg";
$this->assertEquals(
"<a>msg</a>",
PMA_langName($canonicalPath, "desc")
);
}
}