মূল কীটি হ'ল যুক্তি দিয়ে আপনার উপাদানগুলি রাউটার.এফপি ফাইল (যা সামনের প্রান্তে আপনার উপাদানটির মূল ফোল্ডারে পাওয়া উচিত) সেট আপ করা যা উপযুক্ত মেনু আইটেমটি অনুসন্ধান করবে এবং নির্বাচন করবে। আমি এটি স্বয়ংক্রিয়ভাবে ঘটতে দেখতে চাই, তবে যতদূর আমি জানি এটি তেমন নয়।
কোডের এই ব্লকটি কোনও ধরণের সহায়ক ফাংশনটিতে কাজ করা সবচেয়ে ভাল হবে যা সামগ্রীতে উপযুক্ত ফিট মেনু আইটেমটি স্বয়ংক্রিয়ভাবে সন্ধান করতে ব্যবহার করা যেতে পারে।
সেরা ফিট মেনু আইটেমটি পেতে আমি আমার কাস্টম উপাদানগুলির বেশ কয়েকটিতে এই কোডটি ব্যবহার করেছি:
// I use this first empty array to avoid having unset properties in my query
$base_array = array('Itemid'=>'', 'option'=>'', 'view'=>'', 'layout'=>'', 'id'=>'');
$app =& JFactory::getApplication();
$menu = $app->getMenu();
$active = $menu->getActive();
// hack to protect the actual current item as well as the search module or other places that use JRoute::_('index.php');
if (count($query)==2 && isset($query['option']) && isset($query['Itemid']) && $query['option'] && $query['Itemid']) {
return $segments;
}
// start with no match found
$match = false;
$match_level = 0;
$query += $base_array;
// we want to find a menu item for this if possible. If the active menu item is the current menu item then we should see if there is a better match.
if (empty($query['Itemid']) || ($query['Itemid'] == $active->id && empty($query['task']))) {
// load all menu items
$items = $menu->getMenu();
// use the current item over others if it ties for the best match
if ($active->query['option'] == $query['option']) {
$match_level = 1;
$match = $active;
if ($active->query['view'] == $query['view']) {
$match_level = 2;
if ($active->query['layout'] == $query['layout'] || ($query['layout']=='default' && !$active->query['layout'])) {
$match_level = 3;
if ($active->query['id'] == $query['id']) {
$match_level = 4;
}
}
}
}
// loop through each menu item in order
foreach ($items as $item) {
$item->query += $base_array;
// base check is that it is for this component
// then cycle through each possibility finding it's match level
if ($item->query['option'] == $query['option']) {
$item_match = 1;
if ($item->query['view'] == $query['view']) {
$item_match = 2;
if (!$query['layout'] && $item->query['layout']) {
$query['layout'] = 'default';
}
if ($item->query['layout'] == $query['layout'] || ($query['layout']=='default' && !$item->query['layout'])) {
$item_match = 3;
if ($item->query['id'] == $query['id']) {
$item_match = 4;
}
}
}
}
// if this item is a better match than our current match, set it as the best match
if ($item_match > $match_level) {
$match = $item;
$match_level = $item_match;
}
}
// if there is a match update Itemid to match that menu item
if ($match) {
$query['Itemid'] = $match->id;
$menuItem = $menu->getItem($match->id);
} else {
$menuItem = $menu->getActive();
}
}
এগুলি সবই এক ধরণের গোলযোগ (এবং যদি কারও কাছে থাকে তবে আমি উন্নতিগুলি পছন্দ করব!) তবে এটি কাজটি হয়ে যায়। যদি বর্তমান মেনু আইটেমটি সেরা মিল হয় তবে এটি সর্বদা এটির সাথে লেগে থাকবে।
অন্যথায় এটি কম্পোনেন্টের নাম -> দেখার নাম -> লেআউটের নাম -> আইডি মানের উপর ভিত্তি করে সেরা মিল খুঁজে পাওয়া উচিত। আরও ডানদিকে এটি মেলে, আমি ম্যাচটিকে আরও ভাল বলে মনে করি!