ezcWorkflowDefinitionStorageXml::getFilesystemWorkflowName PHP 메소드

getFilesystemWorkflowName() 보호된 메소드

This method replaces whitespace and '.' with '_'.
protected getFilesystemWorkflowName ( string $workflowName ) : string
$workflowName string
리턴 string
    protected function getFilesystemWorkflowName($workflowName)
    {
        return preg_replace('#[^\\w.]#', '_', $workflowName);
    }