2013-10-19 45 views

回答

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'; 
} 

?> 
0

我剛纔設置的語言現場「沒有結果的行爲」文本「中性語言」,這樣,如果它被設置它將打印語言,中性語言,如果語言尚未設置。

Drupal中的語言中性實際上只是語言領域沒有價值。