本文整理汇总了PHP中vamTemplate::clear_cache方法的典型用法代码示例。如果您正苦于以下问题:PHP vamTemplate::clear_cache方法的具体用法?PHP vamTemplate::clear_cache怎么用?PHP vamTemplate::clear_cache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类vamTemplate
的用法示例。
在下文中一共展示了vamTemplate::clear_cache方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
$listing_template = 'product_tops_list.html';
if (isset($_SESSION['listing_tops_template'])) {
$listing_template = $_SESSION['listing_tops_template'];
}
if ($listing_template == 'product_tops_list.html') {
$vamTemplate->assign('LISTING_TEMPLATE', 'product_tops_columns.html');
$vamTemplate->assign('LISTING_TEMPLATE_TEXT', 'плиткой');
} else {
$vamTemplate->assign('LISTING_TEMPLATE', 'product_tops_list.html');
$vamTemplate->assign('LISTING_TEMPLATE_TEXT', 'списком');
}
if (!$cache || $rebuild) {
if (count($module_content) > 0) {
$vamTemplate->assign('module_content', $module_content);
if ($rebuild) {
$vamTemplate->clear_cache(CURRENT_TEMPLATE . '/module/new_products_overview.html', $cache_id);
}
//$main_content = $vamTemplate->fetch(CURRENT_TEMPLATE . '/module/new_products_overview.html', $cache_id);
$main_content = $vamTemplate->fetch(CURRENT_TEMPLATE . '/module/product_listing/' . $listing_template);
}
} else {
//$main_content = $vamTemplate->fetch(CURRENT_TEMPLATE . '/module/new_products_overview.html', $cache_id);
$main_content = $vamTemplate->fetch(CURRENT_TEMPLATE . '/module/product_listing/' . $listing_template);
}
$vamTemplate->assign('main_content', $main_content);
$vamTemplate->caching = 0;
if (!defined(RM)) {
$vamTemplate->load_filter('output', 'note');
}
$template = file_exists('templates/' . CURRENT_TEMPLATE . '/' . FILENAME_PRODUCTS_NEW . '.html') ? CURRENT_TEMPLATE . '/' . FILENAME_PRODUCTS_NEW . '.html' : CURRENT_TEMPLATE . '/index.html';
$vamTemplate->assign('category_depth', true);