PMA\libraries\navigation\NavigationTree::_parsePath PHP Method

_parsePath() private method

Converts an encoded path to a node in string format to an array
private _parsePath ( string $string ) : array
$string string The path to parse
return array
    private function _parsePath($string)
    {
        $path = explode('.', $string);
        foreach ($path as $key => $value) {
            $path[$key] = base64_decode($value);
        }
        return $path;
    }