本文整理汇总了PHP中Less_Cache::SetCacheDir方法的典型用法代码示例。如果您正苦于以下问题:PHP Less_Cache::SetCacheDir方法的具体用法?PHP Less_Cache::SetCacheDir怎么用?PHP Less_Cache::SetCacheDir使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Less_Cache
的用法示例。
在下文中一共展示了Less_Cache::SetCacheDir方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: doActionCleanAggregationCache
/**
* Clean aggregation cache directory
*
* @return void
*/
public function doActionCleanAggregationCache()
{
\Includes\Utils\FileManager::unlinkRecursive(LC_DIR_CACHE_RESOURCES);
\Less_Cache::SetCacheDir(LC_DIR_DATACACHE);
\Less_Cache::CleanCache();
\XLite\Core\TopMessage::addInfo('Aggregation cache has been cleaned');
}
示例2: SetOption
public function SetOption($option, $value) {
switch ($option) {
case 'import_dirs':$this->SetImportDirs($value);
return;
case 'cache_dir':if (is_string($value)) {
Less_Cache::SetCacheDir($value);
Less_Cache::CheckCacheDir();
}return;
}Less_Parser::$options[$option] = $value;
}
示例3: processTheme
/**
* Compile scripts for the specified theme.
*
* @param string $theme Theme name
*
* @return void
*/
protected function processTheme($theme)
{
$lessFiles = $this->getAllLessFiles($theme);
if (empty($lessFiles)) {
$this->logMessage("No LESS in " . $theme);
return;
}
$this->logMessage("Processing " . $theme);
foreach ($lessFiles as $less) {
if (is_string($less)) {
$this->compileFile($theme, $less);
}
}
\Less_Cache::SetCacheDir(APPLICATION_PATH . '/themes/' . $theme . '/css/less/');
\Less_Cache::CleanCache();
// deletes week old files
}