RtNode::getRevesedPathParts PHP Method

getRevesedPathParts() private method

Explodes a string by forward slashes, removes empty first/last node and finally reverses the array.
private getRevesedPathParts ( $path )
    private function getRevesedPathParts($path)
    {
        return array_reverse(array_filter(explode('/', $path), array('RtNode', 'filterPath')));
    }