欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

Drupal 7 d7 drupal7 区块 模板改写建议 有大用 有大大用

核心默认主题改写建议

通过 hook_preprocess_block()  可以得到 建议文件的顺序

区块

基模板:block.tpl.php

block--[region|[module|--delta]].tpl.php

查找顺序:


block--module--delta.tpl.php

block--module.tpl.php

block--region.tpl.php

例子:block--block--1.tpl.php,block--sidebar_first.tpl.php,block--custom--my-block.tpl.php


 是 block--block--1.tpl.php 记住 不是  block__block__1.tpl.php


评论

基模板:comment.tpl.php

comment--node-[type].tpl.php

例子:comment--node-article.tpl.php


基模板:comment-wrapper.tpl.php

comment-wrapper--node-[type].tpl.php

例子:comment-wrapper--node-article.tpl.php


字段

基模板:field.tpl.php

field--[type|name[--content-type]|content-type].tpl.php

查找顺序:


field--field-name--content-type.tpl.php

field--content-type.tpl.php

field--field-name.tpl.php

field--field-type.tpl.php

例子:field--field-phone.tpl.php


论坛

基模板:forums.tpl.php

forums--[[container|topic]--forumID].tpl.php

查找顺序:

论坛容器


forums--containers--forumID.tpl.php

forums--forumID.tpl.php

forums--containers.tpl.php

论坛主题


forums--topics--forumID.tpl.php

forums--forumID.tpl.php

forums--topics.tpl.php

HTML模板

基模板:html.tpl.php


维护状态

基模板:maintenance-page.tpl.php

maintenance-page--[offline].tpl.php


节点

基模板:node.tpl.php

node--[type|nodeid].tpl.php

查找顺序:


node--nodeid.tpl.php

node--type.tpl.php

node.tpl.php

基模板:page.tpl.php

page--[front|internal/path].tpl.php

查找顺序(例子http://www.example.com/node/1/edit):


page--node--edit.tpl.php

page--node--1.tpl.php

page--node.tpl.php

page.tpl.php

投票

基模板:poll-results.tpl.php

poll-results--[block].tpl.php


基模板:poll-vote.tpl.php

poll-vote--[block].tpl.php


基模板:poll-bar.tpl.php

poll-bar--[block].tpl.php


profile

基模板:profile-wrapper.tpl.php

profile-wrapper--[field].tpl.php


区域

基模板:region.tpl.php

region--[region].tpl.php


搜索

基模板:search-results.tpl.php

search-results--[searchType].tpl.php


分类

基模板:taxonomy-term.tpl.php

taxonomy-term--[vocabulary-machine-name|tid].tpl.php

查找顺序:


taxonomy-term--tid.tpl.php

taxonomy-term--vocabulary-machine-name.tpl.php

taxonomy-term.tpl.php

 


相关资源:Drupal7宝典_drupal7-其它文档类资源-CSDN文库

————————————————

版权声明:本文为CSDN博主「xiongyuefei」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

原文链接:https://blog.csdn.net/xiongyuefei/article/details/84469527


来自  https://blog.csdn.net/xiongyuefei/article/details/84469527


普通分类: