1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | $page_id = PAGE_ID; $r = " " ; if ( $page_id !== 0) { ob_start(); show_menu2(0,SM2_ROOT,SM2_ALL,SM2_ALL, ',[url]' , '' , '' , '' , '' , '' ); $allpages = explode ( ',' , ob_get_contents()); ob_end_clean(); ob_start(); show_menu2(0,SM2_ROOT,SM2_ALL,SM2_ALL, ',[page_id]' , '' , '' , '' , '' , '' ); $allpageids = explode ( ',' , ob_get_contents()); ob_end_clean(); $pos = array_search ( $page_id , $allpageids ); if ( $pos < count ( $allpageids ) - 1) { $next = $allpages [ $pos + 1]; } else { $next = $allpages [1]; } $r = '<a title="Go to the next page" href="' . $next . '">>></a>' ; } return $r ; |