-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (24 loc) · 802 Bytes
/
index.php
File metadata and controls
32 lines (24 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?php
header('Content-type: text/html; charset=utf-8');
/*
MozDownload - Mozilla Software Download
vers. 0.0.5rc - February 2014
Get a button to download latest or nightly version of Firefox/Thunderbird
Thanks to:
- Mozilla (http://www.mozilla.org/);
- MozillaItalia (http://www.mozillaitalia.org/)
Copyright © 2013 - 2014 Gianluigi 'A35G'
http://www.hackworld.it/ - http://www.gmcode.it/
*/
include('inc/config.php');
include('inc/dwnld.class.php');
$mid = new MIDownload;
$mid->dataProgram('firefox');
$ts = array(
"dwln_prgm" => $mid->getProg(),
"url_dwln" => $mid->getDownload(),
"name_prgm" => $mid->getNameAct(),
"lang_prgm" => $mid->getNameLang(),
"opsys_prgm" => $mid->getNameOS()
);
echo $mid->getButtDownload($ts, 'tpl/appl.html');