NAVIGATION
This shows you the differences between two versions of the page.
|
english:navigation:nav-rowx [2011/01/05 12:37] Knut Heermann (flip-flop) created |
english:navigation:nav-rowx [2018/06/03 18:09] (current) |
||
|---|---|---|---|
| Line 43: | Line 43: | ||
| ==== Core ==== | ==== Core ==== | ||
| + | |||
| + | Update: 11.01.2011 KH | ||
| <code php |h rt_nav_row_x |h > | <code php |h rt_nav_row_x |h > | ||
| Line 50: | Line 52: | ||
| ********************************************************************************************* | ********************************************************************************************* | ||
| * 05.01.11 KH: http://planmatrix.de V1.0 | * 05.01.11 KH: http://planmatrix.de V1.0 | ||
| + | * 11.01.11 KH: Update | ||
| * NAV_ROW small enhanced for alt and title text | * NAV_ROW small enhanced for alt and title text | ||
| * Cat out and enhanced navigation NAV_ROW from "include"inc_front"front.func.inc.php | * Cat out and enhanced navigation NAV_ROW from "include"inc_front"front.func.inc.php | ||
| * line 644 function nav_level_row(..... | * line 644 function nav_level_row(..... | ||
| - | * | + | * TAG: {NAV_ROWX:...} like described in the docu. |
| ********************************************************************************************* | ********************************************************************************************* | ||
| */ | */ | ||
| Line 99: | Line 102: | ||
| // +KH 05.01.11 title | // +KH 05.01.11 title | ||
| $nav .= '"'.(empty($GLOBALS['content']['struct'][$act_cat_id]['acat_pagetitle']) ? '' : ' title="'.$GLOBALS['content']['struct'][$act_cat_id]['acat_pagetitle'].'"'); | $nav .= '"'.(empty($GLOBALS['content']['struct'][$act_cat_id]['acat_pagetitle']) ? '' : ' title="'.$GLOBALS['content']['struct'][$act_cat_id]['acat_pagetitle'].'"'); | ||
| + | |||
| $nav .= (empty($GLOBALS['content']['struct'][$act_cat_id]["acat_class"]) ? '' : ' class="'.$GLOBALS['content']['struct'][$act_cat_id]["acat_class"].'"').'>'.$direct_before; | $nav .= (empty($GLOBALS['content']['struct'][$act_cat_id]["acat_class"]) ? '' : ' class="'.$GLOBALS['content']['struct'][$act_cat_id]["acat_class"].'"').'>'.$direct_before; | ||
| $nav .= html_specialchars($GLOBALS['content']['struct'][$act_cat_id]['acat_name']); | $nav .= html_specialchars($GLOBALS['content']['struct'][$act_cat_id]['acat_name']); | ||
| Line 115: | Line 118: | ||
| $class = empty($GLOBALS['content']['struct'][$key]["acat_class"]) ? '' : ' class="'.$GLOBALS['content']['struct'][$key]["acat_class"].'"'; | $class = empty($GLOBALS['content']['struct'][$key]["acat_class"]) ? '' : ' class="'.$GLOBALS['content']['struct'][$key]["acat_class"].'"'; | ||
| + | // +KH 05.01.11 title | ||
| + | $class .= (empty($GLOBALS['content']['struct'][$key]['acat_pagetitle']) ? '' : ' title="'.$GLOBALS['content']['struct'][$key]['acat_pagetitle'].'"'); | ||
| if($nav) { | if($nav) { | ||