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

Last change on this file since 15555 was 14972, checked in by ddtddt, 12 years ago

[extensions] - PersoFooter - clean code

File size: 1.2 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
25add_event_handler('loc_end_page_tail', 'pft');
26function 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';"));
32if($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?>
Note: See TracBrowser for help on using the repository browser.