SimplePortal

Support => Install and Upgrade => Topic started by: tahiryildiz on August 07, 2009, 02:28:35 AM

Title: Forum Button Problem
Post by: tahiryildiz on August 07, 2009, 02:28:35 AM
I have read and was successfull with my old template but this time it doesn't work. I am having a problem and I couldn't undertand where my error is.

Here is my index.template:

Quote
// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
   global $context, $settings, $options, $scripturl, $txt;

   // Work out where we currently are.
   $current_action = 'home';
   if (in_array($context['current_action'], array('admin', 'ban', 'boardrecount', 'cleanperms', 'detailedversion', 'dumpdb', 'featuresettings', 'featuresettings2', 'findmember', 'maintain', 'manageattachments', 'manageboards', 'managecalendar', 'managesearch', 'membergroups', 'modlog', 'news', 'optimizetables', 'packageget', 'packages', 'permissions', 'pgdownload', 'postsettings', 'regcenter', 'repairboards', 'reports', 'serversettings', 'serversettings2', 'smileys', 'viewErrorLog', 'viewmembers')))
      $current_action = 'admin';
   if (in_array($context['current_action'], array('search', 'admin', 'calendar', 'profile', 'mlist', 'register', 'login', 'help', 'pm')))
      $current_action = $context['current_action'];
   if ($context['current_action'] == 'search2')
      $current_action = 'search';

   if ($context['current_action'] == 'theme')
      $current_action = isset($_REQUEST['sa']) && $_REQUEST['sa'] == 'pick' ? 'profile' : 'admin';

   // Are we using right-to-left orientation?
   if ($context['right_to_left'])
   {
      $first = 'last';
      $last = 'first';
   }
   else
   {
      $first = 'first';
      $last = 'last';
   }

   // Show the start of the tab section.
   echo '
      <div id="topmenu">
         <ul>';

            // Show the [home] button.
            echo '<li><a' , $current_action=='home' ? ' class="current"' : '' , ' href="', $scripturl, '"><span>' , $txt[103] , '</span></a></li>';

            // Show the [forum] button.
if (in_array($modSettings['sp_portal_mode'], array(1, 3)))
            echo '<li><a' , $current_action=='forum' ? ' class="current"' : '' , ' href="', $scripturl . ($modSettings['sp_portal_mode'] == 1 ? '?action=forum' : ''), '"><span>' , $txt['sp-forum'] , '</span></a></li>';

            // How about the [search] button?
            if ($context['allow_search'])
            echo '<li><a' , $current_action=='search' ? ' class="current"' : '' , ' href="', $scripturl, '?action=search"><span>' , $txt[182] , '</span></a></li>';

            // The [calendar]!
            if ($context['allow_calendar'])
            echo '<li><a' , $current_action=='calendar' ? ' class="current"' : '' , ' href="', $scripturl, '?action=calendar"><span>' , $txt['calendar24'] , '</span></a></li>';
            
            // Is the user allowed to administrate at all? ([admin])
            if ($context['allow_admin'])
            echo '<li><a' , $current_action=='admin' ? ' class="current"' : '' , ' href="', $scripturl, '?action=admin"><span>' , $txt[2] , '</span></a></li>';

            // Edit Profile... [profile]
            if ($context['allow_edit_profile'])
            echo '<li><a' , $current_action=='profile' ? ' class="current"' : '' , ' href="', $scripturl, '?action=profile"><span>' , $txt[79] , '</span></a></li>';

            // Go to PM center... [pm]
            if ($context['user']['is_logged'] && $context['allow_pm'])
            echo '<li><a' , $current_action=='pm' ? ' class="current"' : '' , ' href="', $scripturl, '?action=pm"><span>' , $txt['pm_short'] , ' ', $context['user']['unread_messages'] > 0 ? '[<strong>'. $context['user']['unread_messages'] . '</strong>]' : '' , '</span></a></li>';

            // the [member] list button
            if ($context['allow_memberlist'])
            echo '<li><a ' , $current_action=='mlist' ? ' class="current"' : '' , ' href="', $scripturl, '?action=mlist"><span>' , $txt[331] , '</span></a></li>';

            // If the user is a guest, show [login] button.
            if ($context['user']['is_guest'])
            echo '<li><a ' , $current_action=='login' ? ' class="current"' : '' , ' href="', $scripturl, '?action=login"><span>' , $txt[34] , '</span></a></li>';

            // If the user is a guest, also show [register] button.
            if ($context['user']['is_guest'])
            echo '<li><a ' , $current_action=='register' ? ' class="current"' : '' , ' href="', $scripturl, '?action=register"><span>' , $txt[97] , '</span></a></li>';

            // Otherwise, they might want to [logout]...
            if ($context['user']['is_logged'])
            echo '<li><a ' , $current_action=='logout' ? ' class="current"' : '' , 'href="', $scripturl, '?action=logout;sesc=', $context['session_id'], '"><span>' , $txt[108] , '</span></a></li>';

      echo '
         </ul>
      </div>';
Title: Re: Forum Button Problem
Post by: [SiNaN] on August 09, 2009, 11:53:28 AM
Checkout this topic:

http://simpleportal.net/index.php?topic=148.0
SimplePortal 2.3.8 © 2008-2024, SimplePortal