source: extensions/pdf2tab/main.inc.php @ 19811

Last change on this file since 19811 was 19811, checked in by julien1311, 11 years ago

add an admin page to choose the extension to handle

  • Property svn:eol-style set to LF
File size: 1.6 KB
Line 
1<?php
2/*
3Plugin Name: pdf2tab
4Version: 2.4.e
5Description: open pdf files in new tab instead of downloading it
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=655
7Author: Julien1311
8*/
9
10//Check whether we are indeed included by Piwigo.
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13define('PDF2TAB_ABSOLUTE_PATH' , dirname(__FILE__).'/');
14define('PDF2TAB_DIR' , basename(dirname(__FILE__)));
15define('PDF2TAB_PATH' , PHPWG_PLUGINS_PATH.PDF2TAB_DIR.'/');
16define('PDF2TAB_ADMIN' , get_root_url() . 'admin.php?page=plugin-'.PDF2TAB_DIR);
17
18/* +-----------------------------------------------------------------------+
19 * | Plugin admin                                                          |
20 * +-----------------------------------------------------------------------+ */
21
22// Add an entry to the plugins menu
23add_event_handler('get_admin_plugin_menu_links', 'pdf2tab_admin_menu');
24
25function pdf2tab_admin_menu($menu) {
26                array_push($menu, array(
27                                'NAME'  => 'PDF2Tab',
28                                'URL'   => PDF2TAB_ADMIN,
29                )
30        );     
31        return $menu;
32}
33
34/* +-----------------------------------------------------------------------+
35 * | Plugin code                                                          |
36 * +-----------------------------------------------------------------------+ */
37
38include_once(PDF2TAB_PATH.'include/thumbnails.inc.php');
39include_once(PDF2TAB_PATH.'include/picture.inc.php');
40
41add_event_handler('loc_begin_admin_page', 'pdf2tab_css');
42
43function pdf2tab_css() {
44        global $template, $conf;
45
46        //add a stylesheet
47        $template->append('head_elements', '<link rel="stylesheet" type="text/css" href="'.PDF2TAB_PATH.'css/admin.css">');
48}
49?>
Note: See TracBrowser for help on using the repository browser.