当前位置: 首页>>代码示例>>PHP>>正文


PHP smarty_care::Pagetime方法代码示例

本文整理汇总了PHP中smarty_care::Pagetime方法的典型用法代码示例。如果您正苦于以下问题:PHP smarty_care::Pagetime方法的具体用法?PHP smarty_care::Pagetime怎么用?PHP smarty_care::Pagetime使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在smarty_care的用法示例。


在下文中一共展示了smarty_care::Pagetime方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1:

* This is a hybrid compromise as long as not all forms are converted to smarty
* templates. In this case, when the form is pathology, the smarty assignments are done
* otherwise the output is buffered
*/
$edit = 0;
if ($target == 'patho') {
    $smarty->assign('patho', TRUE);
    include $root_path . 'include/inc_test_request_printout_patho.php';
} else {
    # Collect output buffer
    ob_start();
    if ($target == 'baclabor') {
        include $root_path . 'include/inc_test_findings_form_baclabor.php';
    } else {
        include $root_path . 'include/inc_test_request_printout_' . $target . '.php';
    }
    $sTemp = ob_get_contents();
    ob_end_clean();
    $smarty->assign('printout_form', $sTemp);
}
/**
 * show Copyright
 * managed in smarty_care.class.php
 */
$smarty->assign('sCopyright', $smarty->Copyright());
$smarty->assign('sPageTime', $smarty->Pagetime());
/**
 * show Template
 */
$smarty->display('laboratory/request_aftersave.tpl');
// $smarty->display('debug.tpl');
开发者ID:patmark,项目名称:care2x-tz,代码行数:31,代码来源:labor_test_request_aftersave.php


注:本文中的smarty_care::Pagetime方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。