block.tpl.php 文件使用的代码如下。
<div id="<?php print $block_html_id; ?>" class="<?php print $classes; ?>"<?php print $attributes; ?>>
<?php print render($title_prefix); ?>
<?php if ($block->subject): ?>
<h2<?php print $title_attributes; ?>><?php print $block->subject ?></h2>
<?php endif;?>
<?php print render($title_suffix); ?>
<div class="content"<?php print $content_attributes; ?>>
<?php print $content ?>
</div>
</div>
模板文件不包含使用的类,但您可以使用hook_preprocess_block()
删除一些类。
function mymodule_preprocess_block(&$variables) {
if (strpos($variables['classes'], 'block-search') !== FALSE) {
$variables['classes'] = str_replace('block ', '', $variables['classes']);
}
}
相同的代码可用于主题,在其 template.php 文件中。