Some slight alterations for another forthcoming feature.

Tom: If you want to clean up my CSS changes for this or change the colour for completed stages, feel free ;-)


git-svn-id: file:///svn/phpbb/trunk@5635 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Graham Eames 2006-03-15 21:52:48 +00:00
parent 5b2abb82f5
commit e221b03b95
3 changed files with 32 additions and 2 deletions

View file

@ -217,7 +217,7 @@ span.corners-top span, span.corners-bottom span {
} }
/* Link styles for the sub-section links */ /* Link styles for the sub-section links */
#menu li a { #menu li a, #menu li span {
display: block; display: block;
padding: 3px 2px 3px 10px; padding: 3px 2px 3px 10px;
text-decoration: none; text-decoration: none;
@ -227,11 +227,16 @@ span.corners-top span, span.corners-bottom span {
background-color: #ECECEC; background-color: #ECECEC;
border-top: 1px solid #FFFFFF; border-top: 1px solid #FFFFFF;
} }
#menu li a:hover { #menu li a:hover, #menu li#activemenu span {
text-decoration: none; text-decoration: none;
background-color: #FFA34F; background-color: #FFA34F;
color: #FFFFFF; color: #FFFFFF;
} }
#menu li span.completed {
text-decoration: none;
background-color: #B9DBB3;
color: #006699;
}
#menu li.header { #menu li.header {
display: block; display: block;
padding: 5px; padding: 5px;

View file

@ -35,6 +35,9 @@
<!-- BEGIN l_block1 --> <!-- BEGIN l_block1 -->
<li<!-- IF l_block1.S_SELECTED --> id="activemenu"<!-- ENDIF -->><a href="{l_block1.U_TITLE}"><span>{l_block1.L_TITLE}</span></a></li> <li<!-- IF l_block1.S_SELECTED --> id="activemenu"<!-- ENDIF -->><a href="{l_block1.U_TITLE}"><span>{l_block1.L_TITLE}</span></a></li>
<!-- END l_block1 --> <!-- END l_block1 -->
<!-- BEGIN l_block2 -->
<li<!-- IF l_block2.S_SELECTED --> id="activemenu"<!-- ENDIF -->><span<!-- IF l_block2.S_COMPLETE --> class="completed"<!-- ENDIF -->>{l_block2.L_TITLE}</span></li>
<!-- END l_block2 -->
</ul> </ul>
</div> </div>

View file

@ -206,6 +206,10 @@ class module
{ {
$this->sub = strtolower((in_array(strtoupper($selected_submod), $row['module_subs'])) ? $selected_submod : $row['module_subs'][0]); $this->sub = strtolower((in_array(strtoupper($selected_submod), $row['module_subs'])) ? $selected_submod : $row['module_subs'][0]);
} }
elseif (is_array($row['module_stages']))
{
$this->sub = strtolower((in_array(strtoupper($selected_submod), $row['module_stages'])) ? $selected_submod : $row['module_stages'][0]);
}
else else
{ {
$this->sub = ''; $this->sub = '';
@ -361,6 +365,24 @@ class module
)); ));
} }
} }
if (is_array($this->module_ary[$this->id]['stages']))
{
$subs = $this->module_ary[$this->id]['stages'];
$matched = false;
foreach ($subs as $option)
{
$l_option = (!empty($lang['STAGE_' . $option])) ? $lang['STAGE_' . $option] : preg_replace('#_#', ' ', $option);
$option = strtolower($option);
$matched = ($this->sub == $option) ? true : $matched;
$template->assign_block_vars('l_block2', array(
'L_TITLE' => $l_option,
'S_SELECTED' => ($this->sub == $option),
'S_COMPLETE' => !$matched,
));
}
}
} }
else else
{ {