source: extensions/photo_update/main.inc.php @ 24754

Last change on this file since 24754 was 24624, checked in by plg, 11 years ago

bug fixed: load language at the right time so that the tab is always translated

File size: 700 bytes
RevLine 
[11651]1<?php
2/*
3Plugin Name: Photo Update
4Version: auto
5Description: Update a photo with a new file
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=
7Author: plg
8Author URI: http://piwigo.wordpress.com
9*/
10
11if (!defined('PHPWG_ROOT_PATH'))
12{
13  die('Hacking attempt!');
14}
15
[16982]16add_event_handler('tabsheet_before_select','photo_update_add_tab', 50, 2);
17function photo_update_add_tab($sheets, $id)
18{ 
[24624]19  load_language('plugin.lang', PHPWG_PLUGINS_PATH.basename(dirname(__FILE__)).'/');
20 
[16982]21  if ($id == 'photo')
[11651]22  {
[16982]23    $sheets['update'] = array(
24      'caption' => l10n('Update'),
25      'url' => get_root_url().'admin.php?page=plugin-photo_update-'.$_GET['image_id'],
26      );
[11651]27  }
[16982]28 
29  return $sheets;
[11651]30}
31?>
Note: See TracBrowser for help on using the repository browser.