|
Revision 9784, 0.8 KB
(checked in by mistic100, 2 years ago)
|
|
[extensions] Front2Back
- new admin page
- some changes in config
|
-
Property svn:eol-style set to
LF
-
Property svn:keywords set to
Author Date Id Revision
|
| Rev | Line | |
|---|
| [9782] | 1 | <?php |
|---|
| 2 | /* |
|---|
| [3339] | 3 | Plugin Name: Front2Back |
|---|
| [9784] | 4 | Version: 2.2.a |
|---|
| [9782] | 5 | Description: Add a link on picture's page to show a alternative version of the pic (for postcards for example) |
|---|
| [3339] | 6 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=183 |
|---|
| [9782] | 7 | Author: VDigital & Mistic |
|---|
| [3339] | 8 | */ |
|---|
| 9 | |
|---|
| [9782] | 10 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
|---|
| [3339] | 11 | |
|---|
| [9782] | 12 | define('F2B_DIR', basename(dirname(__FILE__))); |
|---|
| 13 | define('F2B_PATH', PHPWG_PLUGINS_PATH . F2B_DIR . '/'); |
|---|
| [3339] | 14 | |
|---|
| [9782] | 15 | include_once(F2B_PATH . 'Front2Back.php'); |
|---|
| 16 | add_event_handler('render_element_content', 'Front2Back_content', 99, 2); |
|---|
| 17 | |
|---|
| [9784] | 18 | if (script_basename() == 'admin') |
|---|
| 19 | { |
|---|
| 20 | add_event_handler('get_admin_plugin_menu_links', 'Front2Back_admin_menu'); |
|---|
| 21 | function Front2Back_admin_menu($menu) |
|---|
| 22 | { |
|---|
| 23 | array_push($menu, array( |
|---|
| 24 | 'NAME' => 'Front2Back', |
|---|
| 25 | 'URL' => get_root_url().'admin.php?page=plugin-' . F2B_DIR)); |
|---|
| 26 | return $menu; |
|---|
| 27 | } |
|---|
| 28 | } |
|---|
| 29 | |
|---|
| [3339] | 30 | ?> |
|---|