0

タイトル、タイプ、言語、作成者などのフィールドを持つコンテンツを表示するためのビューを作成していますが、言語ニュートラルとして値を持つ言語フィールドが Drupal 7 のビューに表示されません。

誰かが解決策を提案できますか?

4

2 に答える 2

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 に答える