source: extensions/read_metadata/initadmin.php

Last change on this file was 32905, checked in by ddtddt, 16 months ago

[read_metadata] compatibility php8

File size: 2.5 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Read Metadata plugin for piwigo  by TEMMII                            |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2016-2023 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
23/*
24add_event_handler('get_admin_plugin_menu_links', 'read_metadata_admin_menu');
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){
50  $search = '#        </div>
51      </div>
52    </div>
53
54
55    <p>
56      <strong>#';
57 
58  $replacement = '        </div>
59      </div>
60    </div>
61
62
63    <p>
64      <strong>
65        <a class="icon-eye" href="{$U_SHOWMETADATA}">{\'Show metadata\'|@translate}</a><br><br>
66';
67
68  return preg_replace($search, $replacement, $content);
69        }
Note: See TracBrowser for help on using the repository browser.