Last change
on this file since 19898 was
16982,
checked in by plg, 12 years ago
|
add tab "Update" on photo administration screen (requires Piwigo 2.4.2)
|
File size:
613 bytes
|
Line | |
---|
1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Photo Update |
---|
4 | Version: auto |
---|
5 | Description: Update a photo with a new file |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid= |
---|
7 | Author: plg |
---|
8 | Author URI: http://piwigo.wordpress.com |
---|
9 | */ |
---|
10 | |
---|
11 | if (!defined('PHPWG_ROOT_PATH')) |
---|
12 | { |
---|
13 | die('Hacking attempt!'); |
---|
14 | } |
---|
15 | |
---|
16 | add_event_handler('tabsheet_before_select','photo_update_add_tab', 50, 2); |
---|
17 | function photo_update_add_tab($sheets, $id) |
---|
18 | { |
---|
19 | if ($id == 'photo') |
---|
20 | { |
---|
21 | $sheets['update'] = array( |
---|
22 | 'caption' => l10n('Update'), |
---|
23 | 'url' => get_root_url().'admin.php?page=plugin-photo_update-'.$_GET['image_id'], |
---|
24 | ); |
---|
25 | } |
---|
26 | |
---|
27 | return $sheets; |
---|
28 | } |
---|
29 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.