AdminPageFrameworkLoader_Option::_getVersionByDepth PHP Method

_getVersionByDepth() private method

Returns a stating part of version by the given depth.
Since: 3.5.0
private _getVersionByDepth ( $sVersion, $iDepth = 2 )
    private function _getVersionByDepth($sVersion, $iDepth = 2)
    {
        if (!$iDepth) {
            return $sVersion;
        }
        $_aParts = explode('.', $sVersion);
        $_aParts = array_slice($_aParts, 0, $iDepth);
        return implode('.', $_aParts);
    }