source: extensions/Back2Front/main.inc.php @ 10819

Last change on this file since 10819 was 10819, checked in by mistic100, 13 years ago

first version

File size: 1.1 KB
Line 
1<?php 
2/*
3Plugin Name: Back2Front
4Version: auto
5Description: Add a link on picture's page to show a alternative version of the pic (for postcards for example)
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=533
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12global $prefixeTable;
13
14define('B2F_DIR', basename(dirname(__FILE__)));
15define('B2F_PATH', PHPWG_PLUGINS_PATH . B2F_DIR . '/');
16define('B2F_TABLE', $prefixeTable . 'image_verso');
17
18load_language('plugin.lang', B2F_PATH);
19include_once(B2F_PATH . 'Back2Front.php');
20
21add_event_handler('render_element_content', 'Back2Front_picture_content', 99, 2);
22//add_event_handler('loc_end_section_init', 'Back2Front_items');
23add_event_handler('loc_end_admin', 'Back2Front_picture_modify');
24
25
26/*      add_event_handler('get_admin_plugin_menu_links', 'Front2Back_admin_menu');
27        function Front2Back_admin_menu($menu)
28        {
29                array_push($menu, array(
30                        'NAME' => 'Front2Back',
31                        'URL' => get_root_url().'admin.php?page=plugin-' . B2F_DIR));
32                return $menu;
33        } */
34
35?>
Note: See TracBrowser for help on using the repository browser.