source: extensions/read_metadata/initadmin.php @ 32022

Last change on this file since 32022 was 31747, checked in by ddtddt, 7 years ago

[extensions] - read_metadata - select photo in liste

File size: 2.5 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Read Metadata                                                         |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2016-2017 ddtddt               http://temmii.com/piwigo/ |
6// +-----------------------------------------------------------------------+
7// | This program is free software; you can redistribute it and/or modify  |
8// | it under the terms of the GNU General Public License as published by  |
9// | the Free Software Foundation                                          |
10// |                                                                       |
11// | This program is distributed in the hope that it will be useful, but   |
12// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
13// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
14// | General Public License for more details.                              |
15// |                                                                       |
16// | You should have received a copy of the GNU General Public License     |
17// | along with this program; if not, write to the Free Software           |
18// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
19// | USA.                                                                  |
20// +-----------------------------------------------------------------------+
21
22//add admin menu
23add_event_handler('get_admin_plugin_menu_links', 'read_metadata_admin_menu');
24
25function read_metadata_admin_menu($menu){
26    $menu[] = array(
27        'NAME' => l10n('Read metadata'),
28        'URL' => READ_METADATA_ADMIN,
29    );
30     return $menu;
31}
32
33add_event_handler('loc_begin_admin_page', 'read_metadataprefiltre',60);
34
35function read_metadataprefiltre(){
36  global $template;
37  $template->set_prefilter('picture_modify', 'read_metadataprefiltreT');
38
39  if (isset($_GET['page']) and 'photo' == $_GET['page'])
40  {
41    $template->assign(
42      array(
43        'U_SHOWMETADATA' => 'admin.php?page=plugin-read_metadata&amp;showmetadata='.$_GET['image_id'],
44        )
45      );
46  }
47}
48
49function read_metadataprefiltreT($content, &$smarty){
50  $search = '#          </ul>
51        </td>
52      </tr>
53    </table>#';
54 
55  $replacement = '
56        <li><a href="{$U_SHOWMETADATA}"><span class="icon-eye"></span>{\'Show metadata\'|@translate}</a></li>
57
58          </ul>
59        </td>
60      </tr>
61    </table>';
62
63  return preg_replace($search, $replacement, $content);
64        }
Note: See TracBrowser for help on using the repository browser.