कोड में इसे सीमित करने का एक तरीका निम्नलिखित होगा जैसे कि एक कस्टम मॉड्यूल के लिए कुछ:
function custom_views_pre_render(&$view) {
//get the rows from the view just before render
$results = $view->result;
//create a counter
$count = '';
//we're going to built up a new $result array
$new_results = array();
//iterate through each view row
foreach($results as $result) {
//find the taxonomy term
$term = $result->taxonomy_term_data_name;
//add the term to a string of all the terms we've seen so far
$count .= $term;
//make sure to separate them with spaces to make them easier to count
$count .= ' ' ;
//count how many rows have the same term as the current one
$term_count = array_count_values(str_word_count($count, 1));
if($term_count[$term] <= 3){
//if this is the third or fewer row with this term, add it to the new result array
$new_results[] = $result;
}
}
//instead of the normal view output, only show the results we put in our array.
$view->result = $new_results;
}
यह टैक्सोनॉमी शर्तों के एक दृश्य के लिए है जो एक रिश्ते के माध्यम से नोड्स से जुड़ा है। यदि आपके पास केवल नोड्स का दृश्य है, तो आपका माइलेज भिन्न हो सकता है।
यद्यपि यह 3 से अधिक प्रति शब्द के प्रदर्शन को रोकता है, लेकिन यह क्वेरी को प्रत्येक शब्द के लिए सभी परिणाम वापस करने से नहीं रोकेगा, इसलिए यह SQL प्रदर्शन को बिल्कुल भी सुधार नहीं करता है। यदि आपके पास प्रत्येक पद के लिए बहुत बड़ी संख्या में परिणाम हैं, तो अलग-अलग व्यू पैनल डिस्प्ले बनाये और उन सभी को एक क्षेत्र में डालकर CTools पेज मैनेजर जैसी किसी चीज़ का उपयोग करें ताकि आप भारी क्वेरी नहीं चला रहे हैं।
हमेशा की तरह, आप इस सामान को उत्पादन पर कैश करना चाहते हैं।