home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / CMS / xoops-2.0.18.1.exe / xoops-2.0.18.1 / htdocs / modules / system / menu.php < prev    next >
Encoding:
PHP Script  |  2005-11-03  |  3.6 KB  |  60 lines

  1. <?php
  2. // $Id: menu.php 2 2005-11-02 18:23:29Z skalpa $
  3. //  ------------------------------------------------------------------------ //
  4. //                XOOPS - PHP Content Management System                      //
  5. //                    Copyright (c) 2000 XOOPS.org                           //
  6. //                       <http://www.xoops.org/>                             //
  7. //  ------------------------------------------------------------------------ //
  8. //  This program is free software; you can redistribute it and/or modify     //
  9. //  it under the terms of the GNU General Public License as published by     //
  10. //  the Free Software Foundation; either version 2 of the License, or        //
  11. //  (at your option) any later version.                                      //
  12. //                                                                           //
  13. //  You may not change or alter any portion of this comment or credits       //
  14. //  of supporting developers from this source code or any supporting         //
  15. //  source code which is considered copyrighted (c) material of the          //
  16. //  original comment or credit authors.                                      //
  17. //                                                                           //
  18. //  This program is distributed in the hope that it will be useful,          //
  19. //  but WITHOUT ANY WARRANTY; without even the implied warranty of           //
  20. //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            //
  21. //  GNU General Public License for more details.                             //
  22. //                                                                           //
  23. //  You should have received a copy of the GNU General Public License        //
  24. //  along with this program; if not, write to the Free Software              //
  25. //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA //
  26. //  ------------------------------------------------------------------------ //
  27. // Author: Kazumi Ono (AKA onokazu)                                          //
  28. // URL: http://www.myweb.ne.jp/, http://www.xoops.org/, http://jp.xoops.org/ //
  29. // Project: The XOOPS Project                                                //
  30. // ------------------------------------------------------------------------- //
  31.  
  32. $adminmenu[0]['title'] = _MI_SYSTEM_ADMENU1;
  33. $adminmenu[0]['link'] = "admin.php?fct=banners";
  34. $adminmenu[1]['title'] = _MI_SYSTEM_ADMENU2;
  35. $adminmenu[1]['link'] = "admin.php?fct=blocksadmin";
  36. $adminmenu[2]['title'] = _MI_SYSTEM_ADMENU3;
  37. $adminmenu[2]['link'] = "admin.php?fct=groups";
  38. $adminmenu[3]['title'] = _MI_SYSTEM_ADMENU13;
  39. $adminmenu[3]['link'] = "admin.php?fct=images";
  40. $adminmenu[4]['title'] = _MI_SYSTEM_ADMENU5;
  41. $adminmenu[4]['link'] = "admin.php?fct=modulesadmin";
  42. $adminmenu[5]['title'] = _MI_SYSTEM_ADMENU6;
  43. $adminmenu[5]['link'] = "admin.php?fct=preferences";
  44. $adminmenu[6]['title'] = _MI_SYSTEM_ADMENU7;
  45. $adminmenu[6]['link'] = "admin.php?fct=smilies";
  46. $adminmenu[7]['title'] = _MI_SYSTEM_ADMENU9;
  47. $adminmenu[7]['link'] = "admin.php?fct=userrank";
  48. $adminmenu[8]['title'] = _MI_SYSTEM_ADMENU10;
  49. $adminmenu[8]['link'] = "admin.php?fct=users";
  50. $adminmenu[9]['title'] = _MI_SYSTEM_ADMENU12;
  51. $adminmenu[9]['link'] = "admin.php?fct=findusers";
  52. $adminmenu[10]['title'] = _MI_SYSTEM_ADMENU11;
  53. $adminmenu[10]['link'] = "admin.php?fct=mailusers";
  54. $adminmenu[11]['title'] = _MI_SYSTEM_ADMENU14;
  55. $adminmenu[11]['link'] = "admin.php?fct=avatars";
  56. $adminmenu[12]['title'] = _MI_SYSTEM_ADMENU15;
  57. $adminmenu[12]['link'] = "admin.php?fct=tplsets";
  58. $adminmenu[13]['title'] = _MI_SYSTEM_ADMENU16;
  59. $adminmenu[13]['link'] = "admin.php?fct=comments";
  60. ?>