CK84 Posted April 7, 2011 Report Share Posted April 7, 2011 Hallo, ich bin zum 1.mal hier und habe gleich eine Frage. Ich habe im Content Block "Information" den Content "Kontakt" angezeigt. Ich möchte in diesen Block noch einen Untermenupunkt "ANfahrt", als normalen punkt im content block ist es ja kein problem, jedoch soll "Anfahrt" untermenu zu "Kontakt" sein. ich stelle übergeordneten ordner "kontakt" ein, jedoch passiert dort nichts. Meine Frage ist nun, wie kann ich ein Untermenupunkt im COnten Block erzeugen? Sollte so aussehen Kontakt - Anfahrt Link to comment Share on other sites More sharing options...
CK84 Posted April 8, 2011 Author Report Share Posted April 8, 2011 Hat denn keiner eine Idee, wie ich einen Untermenupunkt erstellen kann? Nich tbei den kategorien, sondern in der BOX Information. Link to comment Share on other sites More sharing options...
CK84 Posted April 11, 2011 Author Report Share Posted April 11, 2011 Brauche immer noch hilfe! Link to comment Share on other sites More sharing options...
Leex Posted April 11, 2011 Report Share Posted April 11, 2011 werds mir heut abend mal anschauen wenn ich zeit habe ... ;-) Link to comment Share on other sites More sharing options...
CK84 Posted April 13, 2011 Author Report Share Posted April 13, 2011 und hast du eine lösung gefunden?? danke Link to comment Share on other sites More sharing options...
Leex Posted April 14, 2011 Report Share Posted April 14, 2011 leider noch nicht ... :/ Link to comment Share on other sites More sharing options...
sobby1969 Posted December 20, 2011 Report Share Posted December 20, 2011 Du must folgende Änderungen in der class.content.php vornehmen. altes script function getChildcontent ($coID, $level = 0,$block, $nested = false) { $data = $this->_getContentLinksbyParent($block,$coID); if (is_array($data)) while (list(,$cont_data) = each($data)) { $count = count($level_data); $level_data[$count] = $cont_data; $level_data[$count]['level'] = ($level+1); $level_data[$count]['active'] = '0'; if (!is_array($this->level)) $this->level = array(); if (in_array($cont_data['id'], $this->level)) { $level_data[$count]['active'] = '1'; // set active } $child_level_data = $this->getChildcontent($cont_data['id'], $level+1,$block,$nested); if (is_data($child_level_data)) { if (!$nested) $level_data = array_merge($level_data, $child_level_data); else $level_data[$count]['sub'] = $child_level_data; } } return $level_data; } [/PHP] neues script: [PHP] function getChildcontent ($coID, $level = 0,$block, $nested = false) { $data = $this->_getContentLinksbyParent($block,$coID); if (is_array($data)) while (list(,$cont_data) = each($data)) { $count = count($level_data); $level_data[$count] = $cont_data; $level_data[$count]['level'] = ($level+1); $level_data[$count]['active'] = '0'; if (!is_array($this->level)) $this->level = array(); if (in_array($cont_data['id'], $this->level)) { $level_data[$count]['active'] = '1'; // set active } if($level_data[$count]['active']==1){ $child_level_data = $this->getChildcontent($cont_data['id'], $level+1,$block,$nested); if (is_array($child_level_data)) { if ($nested==true) $level_data = array_merge($level_data, $child_level_data); else $level_data[$count]['sub'] = $child_level_data; } } } return $level_data; }[/PHP] so ist die Ansicht (struktur) wie bei den Kategorien. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.