This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
protected function readLangRef() | |
{ | |
// It looks like this: #xyz.abc[$mno][nilla].$rpg | |
// Which means: | |
// x.y.z = x [ y ] [ z ] | |
// x[y.z] = x [ y [ z ] ] | |
// x[y][z] = x [ y ] [ z ] | |
// x[y[z]] = x [ y [ z ] ] | |
// | |
// When we hit a ., the next item is surrounded by brackets. |
NewerOlder