| 1 | <?php |
|---|
| 2 | // ------------------------------------------------------------------------ // |
|---|
| 3 | // XOOPS - PHP Content Management System // |
|---|
| 4 | // Copyright (c) 2000 XOOPS.org // |
|---|
| 5 | // <http://www.xoops.org/> // |
|---|
| 6 | // ------------------------------------------------------------------------ // |
|---|
| 7 | // This program is free software; you can redistribute it and/or modify // |
|---|
| 8 | // it under the terms of the GNU General Public License as published by // |
|---|
| 9 | // the Free Software Foundation; either version 2 of the License, or // |
|---|
| 10 | // (at your option) any later version. // |
|---|
| 11 | // // |
|---|
| 12 | // You may not change or alter any portion of this comment or credits // |
|---|
| 13 | // of supporting developers from this source code or any supporting // |
|---|
| 14 | // source code which is considered copyrighted (c) material of the // |
|---|
| 15 | // original comment or credit authors. // |
|---|
| 16 | // // |
|---|
| 17 | // This program is distributed in the hope that it will be useful, // |
|---|
| 18 | // but WITHOUT ANY WARRANTY; without even the implied warranty of // |
|---|
| 19 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // |
|---|
| 20 | // GNU General Public License for more details. // |
|---|
| 21 | // // |
|---|
| 22 | // You should have received a copy of the GNU General Public License // |
|---|
| 23 | // along with this program; if not, write to the Free Software // |
|---|
| 24 | // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // |
|---|
| 25 | // ------------------------------------------------------------------------ // |
|---|
| 26 | // Author: Tobias Liegl (AKA CHAPI) // |
|---|
| 27 | // Site: http://www.chapi.de // |
|---|
| 28 | // Project: The XOOPS Project // |
|---|
| 29 | // ------------------------------------------------------------------------- // |
|---|
| 30 | |
|---|
| 31 | $adminmenu[1]['title'] = _TC_MD_ADMENU3; |
|---|
| 32 | $adminmenu[1]['link'] = "admin/index.php?op=show"; |
|---|
| 33 | $adminmenu[2]['title'] = _TC_MD_ADMENU1; |
|---|
| 34 | $adminmenu[2]['link'] = "admin/index.php?op=submit"; |
|---|
| 35 | $adminmenu[3]['title'] = _TC_MD_ADMENU2; |
|---|
| 36 | $adminmenu[3]['link'] = "admin/index.php?op=nlink"; |
|---|
| 37 | $adminmenu[4]['title'] = _TC_MD_ADMENU_MYBLOCKSADMIN; |
|---|
| 38 | $adminmenu[4]['link'] = "admin/myblocksadmin.php"; |
|---|
| 39 | $adminmenu[] = array( |
|---|
| 40 | 'title' => _TC_MD_ADMENU_MYTPLSADMIN , |
|---|
| 41 | 'link' => "admin/mytplsadmin.php" ) ; |
|---|
| 42 | ?> |
|---|