本文整理汇总了PHP中CASHSystem::renderMustache方法的典型用法代码示例。如果您正苦于以下问题:PHP CASHSystem::renderMustache方法的具体用法?PHP CASHSystem::renderMustache怎么用?PHP CASHSystem::renderMustache使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CASHSystem
的用法示例。
在下文中一共展示了CASHSystem::renderMustache方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: preg_match_all
}
// with a real user but no template we redirect to the admin
if ($template) {
$element_embeds = false;
// i know we don't technically need this, but the immaculate variable in preg_match_all freaks me out
$found_elements = preg_match_all('/{{{element_(.*?)}}}/', $template, $element_embeds, PREG_PATTERN_ORDER);
if ($found_elements) {
foreach ($element_embeds[1] as $element_id) {
ob_start();
CASHSystem::embedElement($element_id);
$page_vars['element_' . $element_id] = ob_get_contents();
ob_end_clean();
}
}
// render out the page itself
echo CASHSystem::renderMustache($template, $page_vars);
exit;
} else {
// redirect to the admin
header('Location: ./admin/');
}
}
/***************************************
*
* ADD PUBLIC PAGE BELOW CLOSING "?>"
*
***************************************/
?>
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->