Ignore:
Timestamp:
10/03/07 21:40:33 (5 years ago)
Author:
hverton
Message:

More xhtml fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/common/last_seen_users_panel/php-files/modules/last_seen_users_panel/module_installer.php

    r840 r865  
    1212| the included gpl.txt file or visit http://gnu.org  | 
    1313+----------------------------------------------------*/ 
    14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('ExiteCMS_INIT')) fallback(BASEDIR."index.php"); 
     14if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 
    1515 
    1616/*---------------------------------------------------+ 
     
    1818+----------------------------------------------------*/ 
    1919 
    20 // no locales for this plugin 
     20if (file_exists(PATH_MODULES."last_seen_users_panel/locale/".$settings['locale'].".php")) { 
     21    include PATH_MODULES."last_seen_users_panel/locale/".$settings['locale'].".php"; 
     22} else { 
     23    include PATH_MODULES."last_seen_users_panel/locale/English.php"; 
     24} 
    2125 
    2226/*---------------------------------------------------+ 
    2327| Module identification                              | 
    2428+----------------------------------------------------*/ 
    25 $mod_title = "Last seen users side panel"; 
    26 $mod_description = "Shows the last members logged on, and the time there were last seen"; 
    27 $mod_version = "1.0.0"; 
    28 $mod_developer = "WanWizard"; 
     29$mod_title = $locale['lsup100'];                        // title or name of this module 
     30$mod_description = $locale['lsup101'];                  // short description of it's purpose 
     31$mod_version = "1.0.0";                                 // module version number 
     32$mod_folder = "last_seen_users_panel";                  // sub-folder of the /modules folder 
     33$mod_developer = "WanWizard";                           // author's name 
    2934$mod_email = "wanwizard@gmail.com"; 
    3035$mod_weburl = "http://exitecms.exite.eu/"; 
    31 $mod_type = "P"; 
     36$mod_type = "M"; 
    3237 
    3338/*---------------------------------------------------+ 
     
    3540+----------------------------------------------------*/ 
    3641 
    37 $mod_folder = "last_seen_users_panel"; 
    38 // no administration module for this plugin 
     42// no admin module 
    3943 
    4044/*---------------------------------------------------+ 
     
    5963+----------------------------------------------------*/ 
    6064 
    61 $mod_site_links = array(); 
     65$mod_site_links = array();                              // site_links definitions. Multiple can be defined 
    6266 
    6367/*---------------------------------------------------+ 
     
    6569+----------------------------------------------------*/ 
    6670 
    67 $mod_install_cmds = array(); 
     71$mod_install_cmds = array();                            // commands to execute when installing this module 
    6872 
    6973/*---------------------------------------------------+ 
     
    7175+----------------------------------------------------*/ 
    7276 
    73 $mod_uninstall_cmds = array(); 
     77$mod_uninstall_cmds = array();                          // commands to execute when uninstalling this module 
    7478 
    7579/*---------------------------------------------------+ 
Note: See TracChangeset for help on using the changeset viewer.