source: extensions/PersoFooter/main.inc.php @ 11216

Last change on this file since 11216 was 11216, checked in by ddtddt, 13 years ago

[extensions] - PersoFooter - first release

File size: 1.4 KB
Line 
1<?php
2/*
3Plugin Name: Perso Footer
4Version: auto
5Description: Add information in the footer
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=554
7Author: ddtddt
8Author URI: http://piwigo.org/
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13define('PFT_DIR' , basename(dirname(__FILE__)));
14define('PFT_PATH' , PHPWG_PLUGINS_PATH . PFT_DIR . '/');
15
16add_event_handler('get_admin_plugin_menu_links', 'PFT_admin_menu');
17function 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
27
28function pft()
29 {
30   if ((script_basename() != 'admin'))
31  {
32        global $template;
33       
34        $PAED = pwg_db_fetch_assoc(pwg_query("SELECT state FROM " . PLUGINS_TABLE . " WHERE id = 'ExtendedDescription';"));
35if($PAED['state'] == 'active') add_event_handler('AP_render_content', 'get_user_language_desc');
36
37$query = '
38select param,value
39        FROM ' . CONFIG_TABLE . '
40  WHERE param = "persoFooter"
41        ;';
42$result = pwg_query($query);
43$row = mysql_fetch_array($result);
44$pat=trigger_event('AP_render_content', $row['value']);
45                 if (!empty($pat))
46                        {
47                                $template->assign('PERSO_FOOTER2', $pat);
48                        }
49                       
50        $template->set_filename('PERSO_FOOTER', realpath(PFT_PATH.'persofooter.tpl')); 
51        $template->append('footer_elements', $template->parse('PERSO_FOOTER', true));
52                       
53        }
54 }
55?>
Note: See TracBrowser for help on using the repository browser.