[3986] | 1 | <?php |
---|
| 2 | // +-----------------------------------------------------------------------+ |
---|
| 3 | // | Mod Name : Download_multi | |
---|
| 4 | // | Mod Version : 0.9-1 | |
---|
| 5 | // | Mod Orignal author: Tboris | |
---|
| 6 | // | Mod Second author : Cestlodovic | |
---|
| 7 | // | Mod Version author : FlipFlip <flipflip@free.fr> | |
---|
| 8 | // | Mod description : | |
---|
| 9 | // | Ce module est base sur le module existant pour le telechargement, | |
---|
| 10 | // | cette version permet le telechargement sur plusieurs pages. | |
---|
| 11 | // +-----------------------------------------------------------------------+ |
---|
| 12 | // | This program is free software; you can redistribute it and/or modify | |
---|
| 13 | // | it under the terms of the GNU General Public License as published by | |
---|
| 14 | // | the Free Software Foundation | |
---|
| 15 | // | | |
---|
| 16 | // | This program is distributed in the hope that it will be useful, but | |
---|
| 17 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
| 18 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
| 19 | // | General Public License for more details. | |
---|
| 20 | // | | |
---|
| 21 | // | You should have received a copy of the GNU General Public License | |
---|
| 22 | // | along with this program; if not, write to the Free Software | |
---|
| 23 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
| 24 | // | USA. | |
---|
| 25 | // +-----------------------------------------------------------------------+ |
---|
| 26 | |
---|
| 27 | /* |
---|
| 28 | Plugin Name: Download Multi |
---|
| 29 | Version: 0.9-1 |
---|
| 30 | Description: Permet le téléchargement d'images sur plusieurs pages dans une archive zip. |
---|
| 31 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=31 |
---|
| 32 | Author: FlipFlip |
---|
| 33 | Author URI: http://phpwebgallery.net/ext/extension_view.php?eid=31 |
---|
| 34 | */ |
---|
| 35 | |
---|
| 36 | if (!defined('PHPWG_ROOT_PATH')) { |
---|
| 37 | die('Hacking attempt!'); |
---|
| 38 | } |
---|
| 39 | |
---|
| 40 | include_once(dirname(__FILE__).'/initialize.inc.php'); |
---|
| 41 | ?> |
---|