home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / unitednuke / unitednuke.exe / html / admin / case / case.flashnews.php < prev    next >
PHP Script  |  2004-01-10  |  1KB  |  49 lines

  1. <?php
  2.  
  3. ######################################################################
  4. # PHP-NUKE: Web Portal System
  5. # ===========================
  6. #
  7. # Copyright (c) 2001 by Francisco Burzi (fbc@mandrakesoft.com)
  8. # http://phpnuke.org
  9. #
  10. # This modules is the main administration part
  11. #
  12. # This program is free software. You can redistribute it and/or modify
  13. # it under the terms of the GNU General Public License as published by
  14. # the Free Software Foundation; either version 2 of the License.
  15. ######################################################################
  16.  
  17. if (!eregi("admin.php", $PHP_SELF)) { die ("Access Denied"); }
  18.  
  19. switch($op) {
  20.      // hlavni funkce
  21.     case "ReadConfig":
  22.     case "SaveConfig":
  23.     case "PubFlash":
  24.     case "DelFlash":
  25.     case "NewFlash":
  26.     case "EditFlash":
  27.     case "WriteFlash":
  28.     case "CommDel":
  29.     case "CommDelete":
  30.  // zobrazovaci
  31.     case "SAF":
  32.     case "SUF":
  33.     case "SADMF":
  34.     case "SAPub":
  35.     case "SUPub":
  36.     case "SADMPub":
  37.     case "SANPub":
  38.     case "SUNPub":
  39.     case "SADMNPub":
  40.     case "FlashMain":
  41.     case "ToolsMain":
  42.     case "DelOld":
  43.     case "DelOldc":
  44.     case "DelOldComm":
  45.     include("admin/modules/flashnews.php");
  46.     break;
  47.  }
  48.  
  49. ?>