作者:老葛,北京亚艾元软件有限责任公司,http://www.yaiyuan.com
它的模板建议规则,是按照区域名字来定义的。我们还以right区域为例,它的模板建议为:
region--right.tpl.php
region.tpl.php
Drupal自带的默认region.tpl.php模板文件,位于modules\system目录下面,内容如下:
<?php if ($content): ?>
<div class="<?php print $classes; ?>">
<?php print $content; ?>
</div>
<?php endif; ?>