আপাতদৃষ্টিতে অনির্ধারিত ব্যবহার করে এটি করার একটি সত্যই মার্জিত উপায় রয়েছে hook_query_node_access_alter()
:
function yourmodule_query_node_access_alter(QueryAlterableInterface $query) {
$search = FALSE;
$node = FALSE;
// Even though we know the node alias is going to be "n", by checking for the
// search_index table we make sure we're on the search page. Omitting this step will
// break the default admin/content page.
foreach ($query->getTables() as $alias => $table) {
if ($table['table'] == 'search_index') {
$search = $alias;
}
elseif ($table['table'] == 'node') {
$node = $alias;
}
}
// Make sure we're on the search page.
if ($node && $search) {
$db_and = db_and();
// I guess you *could* use global $language here instead but this is safer.
$language = i18n_language_interface();
$lang = $language->language;
$db_and->condition($node . '.language', $lang, '=');
$query->condition($db_and);
}
}
দ্রষ্টব্য: এই সার্চটি দুর্দান্ত অনুসন্ধান কনফিগার মডিউলের ভিত্তিতে 100% ।
ব্যবহারকারীর বনাম সামগ্রী ভাষা
কিছু সাইটের ব্যবহারকারীর পছন্দের ভাষায় ইন্টারফেসটি দেখানোর জন্য ভাষা সনাক্তকরণ কনফিগার করা থাকতে পারে, যখন পৃষ্ঠার সামগ্রীটি URL বা সামগ্রী সামগ্রীর উপর ভিত্তি করে দেখানো হয় shown
সেক্ষেত্রে প্রতিস্থাপন বিবেচনা করুন
$language = i18n_language_interface();
সঙ্গে
$language = i18n_language_content();