“语言中立”没有出现在观点中?

时间:2013-10-19 11:05:36

标签: view drupal-7

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

有人可以建议解决方案吗?

2 个答案:

答案 0 :(得分: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';
}

?>

答案 1 :(得分:0)

我只设置语言字段&#34;无结果行为&#34;文本到&#34;语言中立&#34;,如果设置了语言,它将打印语言,如果没有设置语言,则打印语言中性。

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