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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<?php
/** * * This plugin provides an image upload handler for the <i>upload/images</i> admin tab * based on the {@link https://github.com/blueimp/jQuery-File-Upload <i>jQuery File Upload Plugin</i>} * by Sebastian Tschan. * * PHP 5.3 or greater is required by the encorporated software. * * @package plugins * @subpackage uploader */ $plugin_is_filter = 5 | ADMIN_PLUGIN; $plugin_description = gettext('<em>jQuery</em> image upload handler.'); $plugin_author = 'Stephen Billard (sbillard)'; $plugin_disable = (version_compare(PHP_VERSION, '5.3') >= 0) ? false : gettext('jQuery uploader requires PHP 5.3 or greater.');
if ($plugin_disable) { enableExtension('uploader_jQuery', 0); } else { if (zp_loggedin(UPLOAD_RIGHTS)) { zp_register_filter('upload_handlers', 'jQueryUploadHandler'); zp_register_filter('admin_tabs', 'jQueryUploadHandler_admin_tabs', 5); } }
function jQueryUploadHandler($uploadHandlers) { $uploadHandlers['jQuery'] = SERVERPATH . '/' . ZENFOLDER . '/' . PLUGIN_FOLDER . '/uploader_jQuery'; return $uploadHandlers; }
function jQueryUploadHandler_admin_tabs($tabs) { $me = sprintf(gettext('images (%s)'), 'jQuery'); $mylink = 'admin-upload.php?page=upload&tab=' . $me . '&uploadtype=jQuery'; if (is_null($tabs['upload'])) { $tabs['upload'] = array('text' => gettext("upload"), 'link' => WEBPATH . "/" . ZENFOLDER . '/' . $mylink, 'subtabs' => NULL); } else { $default = str_replace(WEBPATH . '/' . ZENFOLDER . '/', '', $tabs['upload']['link']); preg_match('|&tab=([^&]*)|', $default, $matches); $tabs['upload']['subtabs'][$matches[1]] = $default; $tabs['upload']['subtabs'][$me] = $mylink; $tabs['upload']['default'] = $me; $tabs['upload']['link'] = WEBPATH . "/" . ZENFOLDER . '/' . $mylink; } return $tabs; }
?>
|