[ Index ]
 

Code source de XOOPS 2.0.17.1

Accédez au Source d'autres logiciels libres

title

Body

[fermer]

/htdocs/modules/system/ -> xoops_version.php (source)

   1  <?php
   2  // $Id: xoops_version.php 694 2006-09-04 11:33:22Z 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  $modversion['name'] = _MI_SYSTEM_NAME;
  33  $modversion['version'] = 1.02;
  34  $modversion['description'] = _MI_SYSTEM_DESC;
  35  $modversion['author'] = "";
  36  $modversion['credits'] = "The XOOPS Project";
  37  $modversion['help'] = "system.html";
  38  $modversion['license'] = "GPL see LICENSE";
  39  $modversion['official'] = 1;
  40  $modversion['image'] = "images/system_slogo.png";
  41  $modversion['dirname'] = "system";
  42  
  43  // Admin things

  44  $modversion['hasAdmin'] = 1;
  45  $modversion['adminindex'] = "admin.php";
  46  $modversion['adminmenu'] = "menu.php";
  47  
  48  $modversion['onUpdate'] = "include/update.php";
  49  
  50  // Templates

  51  $modversion['templates'][1]['file'] = 'system_imagemanager.html';
  52  $modversion['templates'][1]['description'] = '';
  53  $modversion['templates'][2]['file'] = 'system_imagemanager2.html';
  54  $modversion['templates'][2]['description'] = '';
  55  $modversion['templates'][3]['file'] = 'system_userinfo.html';
  56  $modversion['templates'][3]['description'] = '';
  57  $modversion['templates'][4]['file'] = 'system_userform.html';
  58  $modversion['templates'][4]['description'] = '';
  59  $modversion['templates'][5]['file'] = 'system_rss.html';
  60  $modversion['templates'][5]['description'] = '';
  61  $modversion['templates'][6]['file'] = 'system_redirect.html';
  62  $modversion['templates'][6]['description'] = '';
  63  $modversion['templates'][7]['file'] = 'system_comment.html';
  64  $modversion['templates'][7]['description'] = '';
  65  $modversion['templates'][8]['file'] = 'system_comments_flat.html';
  66  $modversion['templates'][8]['description'] = '';
  67  $modversion['templates'][9]['file'] = 'system_comments_thread.html';
  68  $modversion['templates'][9]['description'] = '';
  69  $modversion['templates'][10]['file'] = 'system_comments_nest.html';
  70  $modversion['templates'][10]['description'] = '';
  71  $modversion['templates'][11]['file'] = 'system_siteclosed.html';
  72  $modversion['templates'][11]['description'] = '';
  73  $modversion['templates'][12]['file'] = 'system_dummy.html';
  74  $modversion['templates'][12]['description'] = 'Dummy template file for holding non-template contents. This should not be edited.';
  75  $modversion['templates'][13]['file'] = 'system_notification_list.html';
  76  $modversion['templates'][13]['description'] = '';
  77  $modversion['templates'][14]['file'] = 'system_notification_select.html';
  78  $modversion['templates'][14]['description'] = '';
  79  $modversion['templates'][15]['file'] = 'system_block_dummy.html';
  80  $modversion['templates'][15]['description'] = 'Dummy template for custom blocks or blocks without templates';
  81  
  82  // Blocks

  83  $modversion['blocks'][1]['file'] = "system_blocks.php";
  84  $modversion['blocks'][1]['name'] = _MI_SYSTEM_BNAME2;
  85  $modversion['blocks'][1]['description'] = "Shows user block";
  86  $modversion['blocks'][1]['show_func'] = "b_system_user_show";
  87  $modversion['blocks'][1]['template'] = 'system_block_user.html';
  88  
  89  $modversion['blocks'][2]['file'] = "system_blocks.php";
  90  $modversion['blocks'][2]['name'] = _MI_SYSTEM_BNAME3;
  91  $modversion['blocks'][2]['description'] = "Shows login form";
  92  $modversion['blocks'][2]['show_func'] = "b_system_login_show";
  93  $modversion['blocks'][2]['template'] = 'system_block_login.html';
  94  
  95  $modversion['blocks'][3]['file'] = "system_blocks.php";
  96  $modversion['blocks'][3]['name'] = _MI_SYSTEM_BNAME4;
  97  $modversion['blocks'][3]['description'] = "Shows search form block";
  98  $modversion['blocks'][3]['show_func'] = "b_system_search_show";
  99  $modversion['blocks'][3]['template'] = 'system_block_search.html';
 100  
 101  $modversion['blocks'][4]['file'] = "system_blocks.php";
 102  $modversion['blocks'][4]['name'] = _MI_SYSTEM_BNAME5;
 103  $modversion['blocks'][4]['description'] = "Shows contents waiting for approval";
 104  $modversion['blocks'][4]['show_func'] = "b_system_waiting_show";
 105  $modversion['blocks'][4]['template'] = 'system_block_waiting.html';
 106  
 107  $modversion['blocks'][5]['file'] = "system_blocks.php";
 108  $modversion['blocks'][5]['name'] = _MI_SYSTEM_BNAME6;
 109  $modversion['blocks'][5]['description'] = "Shows the main navigation menu of the site";
 110  $modversion['blocks'][5]['show_func'] = "b_system_main_show";
 111  $modversion['blocks'][5]['template'] = 'system_block_mainmenu.html';
 112  
 113  $modversion['blocks'][6]['file'] = "system_blocks.php";
 114  $modversion['blocks'][6]['name'] = _MI_SYSTEM_BNAME7;
 115  $modversion['blocks'][6]['description'] = "Shows basic info about the site and a link to Recommend Us pop up window";
 116  $modversion['blocks'][6]['show_func'] = "b_system_info_show";
 117  $modversion['blocks'][6]['edit_func'] = "b_system_info_edit";
 118  $modversion['blocks'][6]['options'] = "320|190|s_poweredby.gif|1";
 119  $modversion['blocks'][6]['template'] = 'system_block_siteinfo.html';
 120  
 121  $modversion['blocks'][7]['file'] = "system_blocks.php";
 122  $modversion['blocks'][7]['name'] = _MI_SYSTEM_BNAME8;
 123  $modversion['blocks'][7]['description'] = "Displays users/guests currently online";
 124  $modversion['blocks'][7]['show_func'] = "b_system_online_show";
 125  $modversion['blocks'][7]['template'] = 'system_block_online.html';
 126  
 127  $modversion['blocks'][8]['file'] = "system_blocks.php";
 128  $modversion['blocks'][8]['name'] = _MI_SYSTEM_BNAME9;
 129  $modversion['blocks'][8]['description'] = "Top posters";
 130  $modversion['blocks'][8]['show_func'] = "b_system_topposters_show";
 131  $modversion['blocks'][8]['options'] = "10|1";
 132  $modversion['blocks'][8]['edit_func'] = "b_system_topposters_edit";
 133  $modversion['blocks'][8]['template'] = 'system_block_topusers.html';
 134  
 135  $modversion['blocks'][9]['file'] = "system_blocks.php";
 136  $modversion['blocks'][9]['name'] = _MI_SYSTEM_BNAME10;
 137  $modversion['blocks'][9]['description'] = "Shows most recent users";
 138  $modversion['blocks'][9]['show_func'] = "b_system_newmembers_show";
 139  $modversion['blocks'][9]['options'] = "10|1";
 140  $modversion['blocks'][9]['edit_func'] = "b_system_newmembers_edit";
 141  $modversion['blocks'][9]['template'] = 'system_block_newusers.html';
 142  
 143  $modversion['blocks'][10]['file'] = "system_blocks.php";
 144  $modversion['blocks'][10]['name'] = _MI_SYSTEM_BNAME11;
 145  $modversion['blocks'][10]['description'] = "Shows most recent comments";
 146  $modversion['blocks'][10]['show_func'] = "b_system_comments_show";
 147  $modversion['blocks'][10]['options'] = "10";
 148  $modversion['blocks'][10]['edit_func'] = "b_system_comments_edit";
 149  $modversion['blocks'][10]['template'] = 'system_block_comments.html';
 150  
 151  // RMV-NOTIFY:

 152  // Adding a block...

 153  $modversion['blocks'][11]['file'] = "system_blocks.php";
 154  $modversion['blocks'][11]['name'] = _MI_SYSTEM_BNAME12;
 155  $modversion['blocks'][11]['description'] = "Shows notification options";
 156  $modversion['blocks'][11]['show_func'] = "b_system_notification_show";
 157  $modversion['blocks'][11]['template'] = 'system_block_notification.html';
 158  
 159  $modversion['blocks'][12]['file'] = "system_blocks.php";
 160  $modversion['blocks'][12]['name'] = _MI_SYSTEM_BNAME13;
 161  $modversion['blocks'][12]['description'] = "Shows theme selection box";
 162  $modversion['blocks'][12]['show_func'] = "b_system_themes_show";
 163  $modversion['blocks'][12]['options'] = "0|80";
 164  $modversion['blocks'][12]['edit_func'] = "b_system_themes_edit";
 165  $modversion['blocks'][12]['template'] = 'system_block_themes.html';
 166  
 167  // Menu

 168  $modversion['hasMain'] = 0;
 169  ?>


Généré le : Sun Nov 25 11:44:32 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics