Backend\Modules\Extensions\Actions\UploadTheme::extractFolderNameBasedOnInfoFile PHP Method

extractFolderNameBasedOnInfoFile() private method

private extractFolderNameBasedOnInfoFile ( string $infoFilePath ) : string
$infoFilePath string
return string
    private function extractFolderNameBasedOnInfoFile($infoFilePath)
    {
        $pathParts = explode('/', $infoFilePath);
        if (count($pathParts) > 1) {
            return $pathParts[0];
        }
        return null;
    }