如何使用纯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->数据是一个html文件。
如何主题HTML文件以特定样式呈现它?
答案 0 :(得分:0)
您必须在HTML内容上重新声明类!