ionFiles
26 Nov 2008
CodeCall Community
This edition of ionFiles is released under the GNU/GPL License, copyright (c) CodeCall 2008
support@codecall.net
www.codecall.net
4.4.5
Download manager and tracker for the Joomla CMS
ionfiles.php
download.php
images/dropdown.gif
images/up.gif
language/english.php
language/dutch.php
language/german.php
language/germanf.php
language/germani.php
language/italian.php
language/danish.php
language/simplified_chinese.php
language/traditional_chinese.php
images/icons/page_white_acrobat.png
images/icons/page_white_actionscript.png
images/icons/page_white_c.png
images/icons/page_white_code.png
images/icons/page_white_coldfusion.png
images/icons/page_white_compressed.png
images/icons/page_white_cplusplus.png
images/icons/page_white_csharp.png
images/icons/page_white_cup.png
images/icons/page_white_database.png
images/icons/page_white_edit.png
images/icons/page_white_error.png
images/icons/page_white_excel.png
images/icons/page_white_find.png
images/icons/page_white_flash.png
images/icons/page_white_freehand.png
images/icons/page_white_gear.png
images/icons/page_white_office.png
images/icons/page_white_paintbrush.png
images/icons/page_white_php.png
images/icons/page_white_picture.png
images/icons/page_white_powerpoint.png
images/icons/page_white_ruby.png
images/icons/page_white_star.png
images/icons/page_white_swoosh.png
images/icons/page_white_text.png
images/icons/page_white_tux.png
images/icons/page_white_vector.png
images/icons/page_white_visualstudio.png
images/icons/page_white_word.png
images/icons/page_white_zip.png
CREATE TABLE IF NOT EXISTS `#__ionfile` (
`id` int(11) NOT NULL auto_increment,
`title` varchar(250) NOT NULL default '',
`file_url` varchar(250) NOT NULL default '',
`name` varchar(250) NOT NULL default '',
`file_version` varchar(250) NOT NULL default '',
`size` varchar(250) NOT NULL default '',
`icon_url` varchar(250) NOT NULL default '',
`file_dl` int(11) NOT NULL default '0',
`description` varchar(250) NOT NULL default '',
`info_url` varchar(250) NOT NULL default '',
`published` int(11) NOT NULL default '0',
`cat_id` int(11) NOT NULL default '0',
`ordering` int(11) NOT NULL default '0',
`access` int(11) NOT NULL default '0',
`groupname` varchar(25) NOT NULL DEFAULT '',
`license` varchar(250) NOT NULL default '',
`author` varchar(250) NOT NULL default '',
`date` varchar(25) NOT NULL default '',
`homepage` varchar(250) NOT NULL default '',
`screenshot` varchar(250) NOT NULL default '',
`download` int(11) NOT NULL default '0',
`creation_date` int(11) NOT NULL default '0',
`extra_fields` varchar(255) NOT NULL default '',
`archived` int(11) NOT NULL default '0',
`search_pos` int(11) NOT NULL default '0',
`disable_search` int(11) NOT NULL default '0',
UNIQUE KEY `ID` (`ID`)
)
CREATE TABLE IF NOT EXISTS `#__ionfile_categories` (
`id` int(11) NOT NULL auto_increment,
`title` varchar(250) NOT NULL default '',
`name` varchar(250) NOT NULL default '',
`POSITION` int(11) NOT NULL default '0',
`published` int(11) NOT NULL default '0',
`access` int(11) NOT NULL default '0',
`groupname` varchar(250) NOT NULL default '',
UNIQUE KEY `id` (`id`),
`ordering` int(11) NOT NULL default '0',
`link` int(11) NOT NULL default '0',
`linkURL` varchar(250) NOT NULL default '',
`extra_fields` varchar(255) NOT NULL default ''
) TYPE=MyISAM
CREATE TABLE IF NOT EXISTS `#__ionfile_conf` (
`id` tinyint(11) NOT NULL default '0',
`hdr_text` varchar(250) NOT NULL default 'Downloads',
`show_size` int(11) NOT NULL default '1',
`show_ver` int(11) NOT NULL default '0',
`show_lic` int(11) NOT NULL default '0',
`show_icon` int(11) NOT NULL default '0',
`show_dl` int(11) NOT NULL default '1',
`show_desc` int(11) NOT NULL default '0',
`show_hdr` int(11) NOT NULL default '1',
`show_totals` int(11) NOT NULL default '0',
`show_hdr_desc` int(11) NOT NULL default '1',
`hdr_desc_text` LONGTEXT NOT NULL,
`show_date` int(11) NOT NULL default '0',
`allow_direct` int(11) NOT NULL default '0',
`extra_fields` varchar(255) NOT NULL default '',
`show_archive` int(11) NOT NULL default '0',
`allow_category` int(11) NOT NULL default '1',
`show_search` int(11) NOT NULL default '1',
PRIMARY KEY (`id`)
) TYPE=MyISAM;
CREATE TABLE IF NOT EXISTS `#__ionfile_downloads_log` (
`id` int NOT NULL auto_increment,
`type` tinyint unsigned NOT NULL default '0',
`date` datetime NOT NULL default '2000-01-01 00:00:00',
`userid` mediumint NOT NULL default '0',
`fileid` int NOT NULL default '0',
`value` int NOT NULL default '0',
`extra_fields` varchar(255),
`ipaddress` char (15) NOT NULL default '',
UNIQUE KEY `id` (`id`),
KEY `userid` (`type`,`userid`),
KEY `fileid` (`type`,`fileid`),
KEY `ipaddress` (`type`,`ipaddress`,`date`)
) TYPE=MyISAM;
install.ionfiles.php
admin.ionfiles.php
admin.ionfiles.html.php
toolbar.ionfiles.html.php
toolbar.ionfiles.php
images/transfolder.png