source: extensions/BatchDownloader/main.inc.php @ 16622

Last change on this file since 16622 was 16598, checked in by mistic100, 12 years ago

-fix template override with UserCollection
-localization

File size: 1.9 KB
Line 
1<?php 
2/*
3Plugin Name: Batch Downloader
4Version: auto
5Description: Allows users to download pictures sets in ZIP. Compatible with User Collections.
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=616
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
12
13global $conf, $prefixeTable;
14
15define('BATCH_DOWNLOAD_PATH',    PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/');
16define('BATCH_DOWNLOAD_TSETS',   $prefixeTable . 'download_sets');
17define('BATCH_DOWNLOAD_TIMAGES', $prefixeTable . 'download_sets_images');
18define('BATCH_DOWNLOAD_LOCAL',   PHPWG_ROOT_PATH . $conf['data_location'] . 'download_archives/');
19define('BATCH_DOWNLOAD_ADMIN',   get_root_url() . 'admin.php?page=plugin-' . basename(dirname(__FILE__)));
20define('BATCH_DOWNLOAD_PUBLIC',  make_index_url(array('section' => 'download')) . '/');
21
22
23if (class_exists('ZipArchive'))
24{
25  add_event_handler('init', 'batch_download_init');
26
27  add_event_handler('loc_end_section_init', 'batch_download_section_init');
28  add_event_handler('loc_end_index', 'batch_download_page');
29 
30  add_event_handler('loc_end_index', 'batch_download_clean');
31
32  add_event_handler('loc_end_index', 'batch_download_index_button', EVENT_HANDLER_PRIORITY_NEUTRAL+10);
33
34  add_event_handler('blockmanager_register_blocks', 'batch_download_add_menublock');
35  add_event_handler('blockmanager_apply', 'batch_download_applymenu');
36 
37  require(BATCH_DOWNLOAD_PATH . 'include/functions.inc.php');
38  require(BATCH_DOWNLOAD_PATH . 'include/BatchDownloader.class.php');
39  require(BATCH_DOWNLOAD_PATH . 'include/events.inc.php');
40}
41
42
43add_event_handler('get_admin_plugin_menu_links', 'batch_download_admin_menu');
44
45/* admin plugins menu */
46function batch_download_admin_menu($menu) 
47{
48  array_push($menu, array(
49    'NAME' => 'Batch Downloader',
50    'URL' => BATCH_DOWNLOAD_ADMIN,
51  ));
52  return $menu;
53}
54
55?>
Note: See TracBrowser for help on using the repository browser.