1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Back2Front |
---|
4 | Version: auto |
---|
5 | Description: Add a link on picture's page to show a alternative version of the pic (for postcards for example) |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=533 |
---|
7 | Author: Mistic |
---|
8 | Author URI: http://www.strangeplanet.fr |
---|
9 | */ |
---|
10 | |
---|
11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
12 | global $prefixeTable; |
---|
13 | |
---|
14 | define('B2F_DIR', basename(dirname(__FILE__))); |
---|
15 | define('B2F_PATH', PHPWG_PLUGINS_PATH . B2F_DIR . '/'); |
---|
16 | define('B2F_TABLE', $prefixeTable . 'image_verso'); |
---|
17 | |
---|
18 | include_once(B2F_PATH . 'Back2Front.php'); |
---|
19 | |
---|
20 | add_event_handler('init', 'Back2Front_init'); |
---|
21 | |
---|
22 | function Back2Front_init() |
---|
23 | { |
---|
24 | load_language('plugin.lang', B2F_PATH); |
---|
25 | } |
---|
26 | |
---|
27 | if (script_basename() == 'picture') |
---|
28 | { |
---|
29 | add_event_handler('render_element_content', 'Back2Front_picture_content', EVENT_HANDLER_PRIORITY_NEUTRAL+20, 2); |
---|
30 | } |
---|
31 | |
---|
32 | if (script_basename() == 'index') |
---|
33 | { |
---|
34 | add_event_handler('loc_end_index_thumbnails', 'Back2Front_thumbnails'); |
---|
35 | } |
---|
36 | |
---|
37 | if (script_basename() == 'admin') |
---|
38 | { |
---|
39 | add_event_handler('loc_begin_admin_page', 'Back2Front_picture_modify'); |
---|
40 | |
---|
41 | add_event_handler('get_admin_plugin_menu_links', 'Back2Front_admin_menu'); |
---|
42 | function Back2Front_admin_menu($menu) |
---|
43 | { |
---|
44 | array_push($menu, array( |
---|
45 | 'NAME' => 'Back2Front', |
---|
46 | 'URL' => get_root_url().'admin.php?page=plugin-' . B2F_DIR)); |
---|
47 | return $menu; |
---|
48 | } |
---|
49 | } |
---|
50 | |
---|
51 | ?> |
---|