नोड 'टीज़र' दृश्य मोड के लिए टेम्पलेट सुझाव क्या है?


37

नोड - [प्रकार | नोडिड] .tpl.php नोड के डिफ़ॉल्ट दृश्य मोड को लक्षित करता है। हालाँकि मैं टीज़र व्यू मोड के टेम्पलेट को ओवरराइड करना चाहता हूं।

'टीज़र' व्यू मोड के लिए टेम्पलेट सुझाव (.tpl.php फ़ाइल) क्या है?

जवाबों:


57

मुझे नहीं लगता कि डिफ़ॉल्ट रूप से एक है, लेकिन आप आसानी से अपने टेम्पलेट में एक जोड़ सकते हैं। पीएफ फ़ाइल:

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


3
आप नोड ऑब्जेक्ट को भी संदर्भित करने के बजाय केवल चर से सीधे चर को खींच सकते हैं ...
shanonabike

1

एंटिटी व्यू मोड मॉड्यूल के माध्यम से इसके लिए एक आसान तरीका है।

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

1

"टीज़र" दृश्य मोड के लिए टेम्पलेट सुझाव है:

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

डिफ़ॉल्ट रूप से "टीज़र" व्यू मोड नियमित node.tpl.phpटेम्पलेट का उपयोग करता है , इसलिए आप आरंभ करने के लिए उस फ़ाइल को कॉपी कर सकते हैं।

आप सभी टेंप्लेट सुझावों को theme_debugमोड चालू करके देख सकते हैं , https://www.drupal.org/node/223440#theme-debug

जब आप दृश्य-स्रोत देखते हैं : पृष्ठ पर आपको उन HTML टिप्पणियों को देखना चाहिए जो टेम्पलेट सुझावों की पूरी सूची को दर्शाती है जिसे Drupal माना जाता है।


0

क्लाइव का हल सही है। लेकिन यदि आप चाहते हैं कि डिफ़ॉल्ट सुझावों के बाद नए सुझावों का मूल्यांकन किया जाए, तो आपको उन्हें सरणी की अंतिम स्थितियों में जोड़ना होगा:

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

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.