Drupal主题一个带有html内容的块

时间:2013-08-04 20:44:26

标签: html drupal themes

如何使用纯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文件以特定样式呈现它?

1 个答案:

答案 0 :(得分:0)

您必须在HTML内容上重新声明类!