Changeset 865 in ExiteCMS for modules/common/last_seen_users_panel/php-files/modules/last_seen_users_panel/module_installer.php
- Timestamp:
- 10/03/07 21:40:33 (5 years ago)
- 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 12 12 | the included gpl.txt file or visit http://gnu.org | 13 13 +----------------------------------------------------*/ 14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined(' ExiteCMS_INIT')) fallback(BASEDIR."index.php");14 if (!checkrights("I") || !defined("iAUTH") || $aid != iAUTH || !defined('INIT_CMS_OK')) fallback(BASEDIR."index.php"); 15 15 16 16 /*---------------------------------------------------+ … … 18 18 +----------------------------------------------------*/ 19 19 20 // no locales for this plugin 20 if (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 } 21 25 22 26 /*---------------------------------------------------+ 23 27 | Module identification | 24 28 +----------------------------------------------------*/ 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 29 34 $mod_email = "wanwizard@gmail.com"; 30 35 $mod_weburl = "http://exitecms.exite.eu/"; 31 $mod_type = " P";36 $mod_type = "M"; 32 37 33 38 /*---------------------------------------------------+ … … 35 40 +----------------------------------------------------*/ 36 41 37 $mod_folder = "last_seen_users_panel"; 38 // no administration module for this plugin 42 // no admin module 39 43 40 44 /*---------------------------------------------------+ … … 59 63 +----------------------------------------------------*/ 60 64 61 $mod_site_links = array(); 65 $mod_site_links = array(); // site_links definitions. Multiple can be defined 62 66 63 67 /*---------------------------------------------------+ … … 65 69 +----------------------------------------------------*/ 66 70 67 $mod_install_cmds = array(); 71 $mod_install_cmds = array(); // commands to execute when installing this module 68 72 69 73 /*---------------------------------------------------+ … … 71 75 +----------------------------------------------------*/ 72 76 73 $mod_uninstall_cmds = array(); 77 $mod_uninstall_cmds = array(); // commands to execute when uninstalling this module 74 78 75 79 /*---------------------------------------------------+
Note: See TracChangeset
for help on using the changeset viewer.
