HTMLPurifier_DefinitionCache_Serializer::generateDirectoryPath PHP 메소드

generateDirectoryPath() 공개 메소드

Generates the path to the directory contain this cache's serial files
public generateDirectoryPath ( HTMLPurifier_Config $config ) : string
$config HTMLPurifier_Config
리턴 string
    public function generateDirectoryPath($config)
    {
        $base = $this->generateBaseDirectoryPath($config);
        return $base . '/' . $this->type;
    }