Skip to content
Snippets Groups Projects
  • Dries Buytaert's avatar
    554d9b08
    · 554d9b08
    Dries Buytaert authored
    - fixed 2 small bugs in account.php
    - drastically improved administration section
    - drastically revamped story administration:
      added new feature to schedule the publishing of stories
    - applied correct naming conventions to submission.php
    - fixed 1 small glitch in boxes
    - somewhat expanded the documentation
    = changed one SQL table
    - updated the faq with info on drupal
    - ... and more things I forgot about
    554d9b08
    History
    Dries Buytaert authored
    - fixed 2 small bugs in account.php
    - drastically improved administration section
    - drastically revamped story administration:
      added new feature to schedule the publishing of stories
    - applied correct naming conventions to submission.php
    - fixed 1 small glitch in boxes
    - somewhat expanded the documentation
    = changed one SQL table
    - updated the faq with info on drupal
    - ... and more things I forgot about
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
admin.php 1.21 KiB
<?

include "includes/common.inc";

// validate user permission:
if (!($user->permissions == 1 || $user->id == 1)) exit();

function admin_page($mod) {  
  global $repository, $menu, $modules;

  function module($name, $module) {
    global $menu, $modules;
    if ($module["admin"]) $output .= "<A HREF=\"admin.php?mod=$name\">$name</A> | ";
    $menu .= $output;
  }

 ?>
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  <HTML>
   <HEAD><TITLE>Administration</TITLE></HEAD>
   <STYLE>
    body { font-family: helvetica, arial; }
    h1   { font-size: 18pt; font-weight: bold; color: #990000; }
    h2   { font-family: helvetica, arial; font-size: 18pt; font-weight: bold; }
    h3   { font-family: helvetica, arial; font-size: 14pt; font-weight: bold; }
    th	 { font-family: helvetica, arial; text-align: center; background-color: #CCCCCC; color: #995555; }
    td	 { font-family: helvetica, arial; }
   </STYLE>
   <BODY BGCOLOR="#FFFFFF" LINK="#005599" VLINK="#004499" ALINK="#FF0000">
    <H1>Administration</H1>
 <?

  ksort($repository);  
  module_iterate("module");
 
 ?> 
    <HR><? echo $menu; ?><A HREF="">home</A><HR>
 <?

  module_execute($mod, "admin");

 ?>
  </BODY>
 </HTML>
 <?
}

admin_page($mod);

?>