Patterns
Provides a patterns parser that uses PHP code to integrate your code seamlessly with your template files, providing advanced Cherrycake capabilities to your template structures.
See the Patterns guide to learn how to work with the Patterns module.
Configuration
directory
The directory where patterns are stored.defaultCacheProviderName
The default cache provider name to use for cached patterns.defaultCachePrefix
The default TTL to use for cached patterns.defaultCacheTtl
The default TTL to use for cached patterns.cachedPatterns
A hash array of the patterns that will be cached, where each key is the name of the pattern, and each value is a hash array with the following possible keys:cacheProviderName
The cache provider name to use for this pattern. If not specified, it will use the one specified in thedefaultCacheProviderName
config key.cachePrefix
The cache prefix to use for this pattern. If not specified, it will use the one specified in thedefaultCachePrefix
config key.cacheTtl
The cache TTL to use for this pattern. If not specified, it will use the one specified in thedefaultCacheTtl
config key.
Last updated