Ignore:
Timestamp:
07/01/08 23:53:23 (4 years ago)
Author:
root
Message:

Added the installable report "top downloaded files"

File:
1 edited

Legend:

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

    r1492 r1499  
    1717$mod_title = "Download Statistics"; 
    1818$mod_description = "Gather and display download statistics from download mirror logs. includes a Google Map with downloaders per country"; 
    19 $mod_version = "1.0.0"; 
     19$mod_version = "1.0.8"; 
    2020$mod_developer = "WanWizard"; 
    2121$mod_email = "wanwizard@gmail.com"; 
     
    5656$mod_site_links = array(); 
    5757$mod_site_links[] = array('name' => 'GeoMap', 'url' => 'geomap.php', 'panel' => '', 'visibility' => 101); 
     58 
     59/*---------------------------------------------------+ 
     60| Report entries for this module                     | 
     61+----------------------------------------------------*/ 
     62 
     63$mod_report_links = array(); 
     64$mod_report_links[] = array('name' => "topfiles", 'title' => "dls800", 'version' => "1.0.0", 'visibility' => 102); 
     65 
     66/*---------------------------------------------------+ 
     67| Search entries for this module                     | 
     68+----------------------------------------------------*/ 
     69 
     70$mod_search_links = array(); 
     71$mod_search_links[] = array('name' => "files", 'title' => "dls850", 'version' => "1.0.0", 'visibility' => 102); 
    5872 
    5973/*---------------------------------------------------+ 
     
    98112$localestrings['en']['dls615'] = "These are the files currently downloaded. Click on a filename to add it to the list:"; 
    99113$localestrings['en']['dls616'] = "Download Statistics Counter"; 
     114// Messages: reports 
     115$localestrings['en']['dls800'] = "Top files downloaded"; 
     116$localestrings['en']['dls801'] = "Filenames filter"; 
     117$localestrings['en']['dls802'] = "This filter is a regex"; 
     118$localestrings['en']['dls803'] = "Show me"; 
     119$localestrings['en']['dls804'] = "the top"; 
     120$localestrings['en']['dls805'] = "All"; 
     121$localestrings['en']['dls806'] = "results in the report, and sort it"; 
     122$localestrings['en']['dls807'] = "Ascending"; 
     123$localestrings['en']['dls808'] = "Descending"; 
     124$localestrings['en']['dls809'] = "Error in regex:"; 
     125$localestrings['en']['dls810'] = "Filename"; 
     126$localestrings['en']['dls811'] = "Download Count"; 
     127// Messages: searches 
     128$localestrings['en']['dls850'] = "Downloaded files"; 
    100129// Messages: geomap 
    101130$localestrings['en']['dls900'] = "<center>No valid Google Maps key found for the URL: %s!</center>"; 
     
    122151$localestrings['en']['dls929'] = "Are you sure you want to delete this statistics counter?"; 
    123152 
    124  
    125153/*---------------------------------------------------+ 
    126154| commands to execute when installing this module    | 
Note: See TracChangeset for help on using the changeset viewer.