Хлебные крошки с уровнем

Discussion in 'PHP' started by Shkiper2009, 9 Sep 2013.

  1. Shkiper2009

    Shkiper2009 New Member

    Joined:
    18 Aug 2009
    Messages:
    136
    Likes Received:
    3
    Reputations:
    -10
    Парюсь над тем как сделать выпадающее меню в модуле навигации в джумле (mod_breadcrumbs)! Вот пример: http://codecanyon.net/item/xbreadcrumbs-dynamic-expandable-navigation/full_screen_preview/5459238

    Помогите кто нибудь реализовать такое, или может кто уже творил подобные вещи с хлебом?
     
  2. Shkiper2009

    Shkiper2009 New Member

    Joined:
    18 Aug 2009
    Messages:
    136
    Likes Received:
    3
    Reputations:
    -10
    Я так понял в файле helper.php за навигацию отвечает этот кусок:

    // Get the PathWay object from the application
    $app = JFactory::getApplication();
    $pathway = $app->getPathway();
    $items = $pathway->getPathWay();

    $count = count($items);
    for ($i = 0; $i < $count; $i ++)
    {
    $items[$i]->name = stripslashes(htmlspecialchars($items[$i]->name, ENT_COMPAT, 'UTF-8'));
    $items[$i]->link = JRoute::_($items[$i]->link);
    }

    if ($params->get('showHome', 1))
    {
    $item = new stdClass();
    $item->name = htmlspecialchars($params->get('homeText', JText::_('MOD_BREADCRUMBS_HOME')));
    $item->link = JRoute::_('index.php?Itemid='.$app->getMenu()->getDefault()->id);
    array_unshift($items, $item);
    }

    return $items;
    }



    но чот я не шарю как сделать уровни под каждым пунктом?
     
  3. Shkiper2009

    Shkiper2009 New Member

    Joined:
    18 Aug 2009
    Messages:
    136
    Likes Received:
    3
    Reputations:
    -10
    хэлп