1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Perso Footer |
---|
4 | Version: auto |
---|
5 | Description: Add information in the footer |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=554 |
---|
7 | Author: ddtddt |
---|
8 | Author URI: http://piwigo.org/ |
---|
9 | */ |
---|
10 | |
---|
11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
12 | |
---|
13 | define('PFT_DIR' , basename(dirname(__FILE__))); |
---|
14 | define('PFT_PATH' , PHPWG_PLUGINS_PATH . PFT_DIR . '/'); |
---|
15 | |
---|
16 | add_event_handler('get_admin_plugin_menu_links', 'PFT_admin_menu'); |
---|
17 | function PFT_admin_menu($menu) |
---|
18 | { |
---|
19 | array_push($menu, array( |
---|
20 | 'NAME' => 'Perso Footer', |
---|
21 | 'URL' => get_admin_plugin_menu_link(PFT_PATH . 'admin/admin.php'))); |
---|
22 | return $menu; |
---|
23 | } |
---|
24 | |
---|
25 | add_event_handler('loc_end_page_tail', 'pft'); |
---|
26 | function pft() |
---|
27 | { |
---|
28 | if ((script_basename() != 'admin')) |
---|
29 | { |
---|
30 | global $template, $conf; |
---|
31 | $PAED = pwg_db_fetch_assoc(pwg_query("SELECT state FROM " . PLUGINS_TABLE . " WHERE id = 'ExtendedDescription';")); |
---|
32 | if($PAED['state'] == 'active') add_event_handler('AP_render_content', 'get_user_language_desc'); |
---|
33 | |
---|
34 | $pat=trigger_event('AP_render_content', $conf['persoFooter']); |
---|
35 | if (!empty($pat)) |
---|
36 | { |
---|
37 | $template->assign('PERSO_FOOTER2', $pat); |
---|
38 | } |
---|
39 | |
---|
40 | $template->set_filename('PERSO_FOOTER', realpath(PFT_PATH.'persofooter.tpl')); |
---|
41 | $template->append('footer_elements', $template->parse('PERSO_FOOTER', true)); |
---|
42 | } |
---|
43 | } |
---|
44 | ?> |
---|