decir/functions.php
changeset 6 3f66ec435f08
parent 3 88b85b9b9272
child 7 37387f84fe25
equal deleted inserted replaced
5:6eea55374f5b 6:3f66ec435f08
   394   decir_update_forum_stats($forum_id);
   394   decir_update_forum_stats($forum_id);
   395   
   395   
   396   return true;
   396   return true;
   397 }
   397 }
   398 
   398 
       
   399 /**
       
   400  * Shows the administration link on the foot of the page.
       
   401  */
       
   402 
       
   403 function decir_show_footers()
       
   404 {
       
   405   global $db, $session, $paths, $template, $plugins; // Common objects
       
   406   if ( $session->user_level >= USER_LEVEL_ADMIN )
       
   407   {
       
   408     echo '<p style="text-align: center; margin: 20px 0 0 0;"><small><a href="' . makeUrlNS('Special', 'DecirAdmin') . '">Administration control panel</a></small></p>';
       
   409   }
       
   410 }
       
   411 
   399 ?>
   412 ?>