source: download_soubory/files.php@ 265

Last change on this file since 265 was 265, checked in by george, 17 years ago

Opraveno: Oprava přidaného odkazu na nový patch.

File size: 4.2 KB
Line 
1<?php
2 $Files = array(
3 'game' => array(
4 'title' => 'Hra',
5 'link' => 'http://www.worldofwarcraft.com/',
6 'files' => array(
7 'download' => array(
8 'title' => 'World of Warcraft',
9 'torrent' => 'http://wow.zdechov.net:6969/torrents/WoW-2.0.0-enUS-Installer.torrent?0F3DBDB74CF44AD617226E935026D46DCA33B2A2',
10 'web' => 'http://www.worldofwarcraft.com/',
11 'info' => '',
12 ),
13 'expansion' => array(
14 'title' => 'World of Warcraft - The Burning Crusade',
15 'torrent' => 'http://wow.zdechov.net:6969/torrents/WoW-BurningCrusade-enUS-Full-Installer.torrent?4572895D086A75038E00FCC868EABB321AB365A9',
16 'web' => 'http://www.worldofwarcraft.com/',
17 'info' => '',
18 ),
19 ),
20 ),
21
22 'patches' => array(
23 'title' => 'Oficiální aktualizace',
24 'link' => 'http://www.wowwiki.com/Patch_mirrors',
25 'files' => array(
26 '2.3.0 full' => array(
27 'title' => '2.3.0 plný',
28 'torrent' => 'http://wow.zdechov.net:6969/torrents/WoW-2.3.0-enUS-patch.exe.torrent?EFBF769E836EF736819B30A10B5FFAD0731632D0',
29 'web' => '',
30 'info' => '',
31 ),
32 '2.3.0 na 2.3.2' => array(
33 'title' => '2.3.0 na 2.3.2',
34 'torrent' => 'http://wow.zdechov.net:6969/torrents/WoW-2.3.0.7561-to-2.3.2.7741-enUS-patch.exe.torrent?F789C2DB2BE6365592916FB6748D7182FD06D8DC',
35 'web' => '',
36 'info' => '',
37 ),
38 ),
39 ),
40 'mangos_server_package' => array(
41 'title' => 'Instalaèní balík MaNGOS serveru',
42 'link' => 'http://wow.zdechov.net/forum/viewforum.php?f=12',
43 'files' => array(
44 'verze_1.5' => array(
45 'title' => 'MangosServerPackage 1.5 (patch 2.3.0)',
46 'torrent' => 'http://wow.zdechov.net:6969/torrents/InstallationMangosServerPackage-1.5+%28patch+2.3.0%29.exe.torrent?D53A2F15C7B0965FE02391C2D35C435048EC8DD3',
47 'web' => '',
48 'info' => '',
49 ),
50 'verze_1.4' => array(
51 'title' => 'MangosServerPackage 1.4 (patch 2.2.3)',
52 'torrent' => 'http://wow.zdechov.net:6969/torrents/InstallationMangosServerPackage-1.4+%28patch+2.2.3%29.exe.torrent?D843ED928A5A54920BBFA878DA752BDC50450627',
53 'web' => '',
54 'info' => '',
55 ),
56 'verze_1.3' => array(
57 'title' => 'MangosServerPackage 1.3 (patch 2.1.3)',
58 'torrent' => 'http://wow.zdechov.net:6969/torrents/InstallationMangosServerPackage-1.3+%28patch+2.1.3%29.exe.torrent?0463C0D26B69AB7B051A57DE699587D8B9CFCCF1',
59 'web' => '',
60 'info' => '',
61 ),
62 ),
63 ),
64 'others' => array(
65 'title' => 'Ostatní',
66 'link' => '',
67 'files' => array(
68 'client_pack' => array(
69 'title' => 'Heroes of Fantasy Client 3.1',
70 'torrent' => 'http://wow.zdechov.net:6969/torrents/InstalaceHeroesOfFantasyClient-3.1.exe.torrent?D56546328D8C7D61A13A0E5228EC5B3E4546C3D2',
71 'web' => 'http://wow.zdechov.net/client/download.php',
72 'info' => '',
73 ),
74 'ceske_fonty_do_wow' => array(
75 'title' => 'Èeské fonty do hry',
76 'torrent' => '',
77 'web' => 'ceske_fonty_do_wow.zip',
78 'info' => '',
79 ),
80 ),
81 ),
82
83 /*
84 'mangos_server_tbc' => array(
85 'title' => 'Instala?n? bal?k MaNGOS TBC serveru',
86 'link' => '',
87 'files' => array(
88 'verze_1.1' => array(
89 'title' => 'Dev-ATeam_Serv 1.0.4',
90 'torrent' => 'http://wow.zdechov.net:6969/torrents/Dev-ATeam_Serv%5B1%5D._1.0.4_.exe.torrent?71568C28E484DF8E0266782964DD35C8823C20C5',
91 'web' => '',
92 'info' => '',
93 ),
94 ),
95 ),
96 */
97 );
98
99function FileLink($GroupName, $FileName)
100{
101 global $Files;
102 $File = $Files[$GroupName]['files'][$FileName];
103 if($File['web'] == '') $Web = '&nbsp;'; else $Web = '<a href="'.$File['web'].'">HTTP</a>';
104 if($File['torrent'] == '') $Torrent = '&nbsp;'; else $Torrent = '<a href="'.$File['torrent'].'">Torrent</a>';
105 $Output = '<span style="font-weight: bold; font-size: small;">'.$File['title'].' '.$Web.' '.$Torrent.'</span>';
106 return($Output);
107}
108
109?>
Note: See TracBrowser for help on using the repository browser.