जवाबों:
मुझे नहीं लगता कि डिफ़ॉल्ट रूप से एक है, लेकिन आप आसानी से अपने टेम्पलेट में एक जोड़ सकते हैं। पीएफ फ़ाइल:
function MYTHEME_preprocess_node(&$vars) {
if($vars['view_mode'] == 'teaser') {
$vars['theme_hook_suggestions'][] = 'node__' . $vars['node']->type . '__teaser';
$vars['theme_hook_suggestions'][] = 'node__' . $vars['node']->nid . '__teaser';
}
}
कि आप की तरह एक टेम्पलेट फ़ाइल का उपयोग करेंगे: node--[type|nodeid]--teaser.tpl.php
एंटिटी व्यू मोड मॉड्यूल के माध्यम से इसके लिए एक आसान तरीका है।
https://www.drupal.org/project/entity_view_mode
The Drupal 7 successor to Build modes which will allow administrators to
define custom view modes for entities. Custom entities are added to the
entity registry via hook_entity_info_alter() so they are available to any code
that uses entity_get_info() to provide a list of view modes for an entity.
This includes node and user reference fields, Views, etc.
It also ensures consistency for template suggestions for all entity types,
so that you can use any of the template patterns, in order of most specific
to least specific:
entity-type__id__view-mode
entity-type__id
entity-type__bundle__view-mode
entity-type__bundle
entity-type
"टीज़र" दृश्य मोड के लिए टेम्पलेट सुझाव है:
node--[type]--teaser.tpl.php
डिफ़ॉल्ट रूप से "टीज़र" व्यू मोड नियमित node.tpl.php
टेम्पलेट का उपयोग करता है , इसलिए आप आरंभ करने के लिए उस फ़ाइल को कॉपी कर सकते हैं।
आप सभी टेंप्लेट सुझावों को theme_debug
मोड चालू करके देख सकते हैं , https://www.drupal.org/node/223440#theme-debug
जब आप दृश्य-स्रोत देखते हैं : पृष्ठ पर आपको उन HTML टिप्पणियों को देखना चाहिए जो टेम्पलेट सुझावों की पूरी सूची को दर्शाती है जिसे Drupal माना जाता है।
क्लाइव का हल सही है। लेकिन यदि आप चाहते हैं कि डिफ़ॉल्ट सुझावों के बाद नए सुझावों का मूल्यांकन किया जाए, तो आपको उन्हें सरणी की अंतिम स्थितियों में जोड़ना होगा:
function MYTHEME_preprocess_node(&$vars) {
if($vars['view_mode'] == 'teaser') {
array_unshift($vars['theme_hook_suggestions'], 'node__' . $vars['node']->type . '__teaser');
array_unshift($vars['theme_hook_suggestions'], 'node__' . $vars['node']->nid . '__teaser');
}
}
इस तरह से आप बचते हैं कि आपका टीज़र नोड मेल खाता है (और इसका उपयोग करता है, यदि यह मौजूद है) नोड - [प्रकार] नोड से पहले .tpl.php - [प्रकार] - teaser.tpl.php