如何为带有纯 HTML 内容的块设置主题
以下是内容类型渲染的代码
function phone_content_type_render($subtype, $conf, $panel_args, $context) {
$block = new stdClass();
$block->module = 'support';
$block->title = '';
$url = "http://time.com"(assumed url)
$response = drupal_http_request($url);
$block->content = render($response->data);
return $block;
}
response->data 是一个 html 文件。
如何为 HTML 文件设置主题以使用特定样式呈现它?