 2008-03-18 15:04 | How do I show a menu that provision below: Version 2.x
http://img339.imageshack.us/img339/3066/http1270018080milagrocoev9.jpg
thanks
Ersao » Quick.Cms v2.x |
 2008-03-18 15:14 | code reference/ core/pages.php aprox line 126
if( isset( $aData ) ){ foreach( $aData as $iKey => $iPage ){ $this->mData[$this->aPages[$iPage]['iPageParent']][$iPage] = true; if( $iDepthLimit > $iDepth && ( $iPageCurrent == $iPage || isset( $this->aPageParents[$iPage] ) ) && $this->aPages[$iPage]['iSubpagesShow'] != 3 ){ #if( $iDepthLimit > $iDepth ){ $this->generateMenuData( $iType, $iPageCurrent, $iDepthLimit, $iDepth + 1, $iPage ); } } // end foreach } } // end function generateMenuData
|