source: extensions/Photo_add_by/main.inc.php @ 31373

Last change on this file since 31373 was 30431, checked in by ddtddt, 10 years ago

[extensions] - Photo_add_by - compatibility see photo by user

File size: 848 bytes
Line 
1<?php
2/*
3Plugin Name: Photo added by
4Version: auto
5Description: Add who added photo on photo page
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=621
7Author: ddtddt
8Author URI:
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13global $prefixeTable;
14
15define('PAB_DIR' , basename(dirname(__FILE__)));
16define('PAB_PATH' , PHPWG_PLUGINS_PATH . PAB_DIR . '/');
17define('PAB_ADMIN',get_root_url().'admin.php?page=plugin-'.PAB_DIR);
18
19 // Plugin on picture page
20if (script_basename() == 'picture') 
21{ 
22  include_once(dirname(__FILE__).'/initpicture.php');
23}
24
25// menu admin
26add_event_handler('get_admin_plugin_menu_links', 'PAB_admin_menu');
27function PAB_admin_menu($menu)
28{
29load_language('plugin.lang', PAB_PATH);
30     
31    $menu[] = array(
32    'NAME' => l10n('Photo added by'),
33    'URL' => PAB_ADMIN,
34     );
35  return $menu;
36}
37
38?>
Note: See TracBrowser for help on using the repository browser.