source: extensions/Front2Back/main.inc.php @ 9782

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

[extensions] Front2Back

  • compatibility with 2.2.0
  • jQuery method for swap
  • localisation
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 584 bytes
Line 
1<?php 
2/*
3Plugin Name: Front2Back
4Version: 2.2.0
5Description: Add a link on picture's page to show a alternative version of the pic (for postcards for example)
6Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=183
7Author: VDigital & Mistic
8*/
9
10if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
11
12define('F2B_DIR', basename(dirname(__FILE__)));
13define('F2B_PATH', PHPWG_PLUGINS_PATH . F2B_DIR . '/');
14
15load_language('plugin.lang', F2B_PATH);
16include_once(F2B_PATH . 'Front2Back.php');
17add_event_handler('render_element_content', 'Front2Back_content', 99, 2);
18       
19?>
Note: See TracBrowser for help on using the repository browser.