dozoruj Posted October 28, 2018 Share Posted October 28, 2018 Здравствуйте. Хочу сделать чтобы последняя ссылка в хлебных крошках не была кликабельной.Нашел код, который формирует хлебные крошки: /forums/forums.php if( is_array( $this->nav ) AND count( $this->nav ) ) { foreach( $this->nav as $_id => $_nav ) { $this->registry->getClass('output')->addNavigation( $_nav[0], $_nav[1], $_nav[2], $_nav[3] ); } } Пытался сделать сам, однако не слишком силен в php. просба подскахать как это реализовать. Link to comment Share on other sites More sharing options...
newbie Posted October 28, 2018 Share Posted October 28, 2018 if( is_array( $this->nav ) AND count( $this->nav ) ) { $keys = array_keys($this->nav); $lastKey = end($keys); foreach( $this->nav as $_id => $_nav ) { if ($_id == $lastKey) { $_nav[1] = ''; } $this->registry->getClass('output')->addNavigation( $_nav[0], $_nav[1], $_nav[2], $_nav[3] ); } } 2 Link to comment Share on other sites More sharing options...
dozoruj Posted November 1, 2018 Author Share Posted November 1, 2018 Благодарю. Помогло. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now