0

我正在创建一个视图,用于显示具有标题、类型、语言、作者等字段的内容,但具有语言中性值的语言字段未显示在 Drupal 7 的视图中。

有人可以提出解决方案吗?

4

2 回答 2

0

我只是将语言字段“无结果行为”文本设置为“语言中性”,这样如果设置了语言,它将打印语言,如果没有设置语言,它将打印语言中性。

Drupal 中的中性语言实际上只是没有值的语言字段。

于 2014-06-05T14:51:03.203 回答
0
By using rewrite result option of views, that issue can be handled.
Steps are as follows :

1. Enable Views PHP module.
2. Go to desired view and check 'exclude from display' in language field. 
3. Add a field of type Global: PHP.
4. In Output field write this code :


<?php 
if($row->language == 'und') {
 echo 'Language Neutral';
}
if($row->language == 'en') {
 echo 'English';
}

?>
于 2013-10-29T09:34:51.353 回答