摘要:
可以参考drupal的theme_render_template函数function theme_render_template($template_file, $variables) { // Extract the variables to a local namespace extract($variables, EXTR_SKIP); // Start output buffering ob_start(); // Include the template file include DRUPAL_ROOT . '/' . $template_file; // End b
阅读全文
posted @ 2014-03-19 22:31
merryfreespace
阅读(274)
推荐(0)
编辑