我正在创建一个视图,用于显示具有标题、类型、语言、作者等字段的内容,但具有语言中性值的语言字段未显示在 Drupal 7 的视图中。
有人可以提出解决方案吗?
我只是将语言字段“无结果行为”文本设置为“语言中性”,这样如果设置了语言,它将打印语言,如果没有设置语言,它将打印语言中性。
Drupal 中的中性语言实际上只是没有值的语言字段。
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';
}
?>