1 | <?php |
---|
2 | // +-----------------------------------------------------------------------+ |
---|
3 | // | Fun Citation - a Piwigo Plugin | |
---|
4 | // | Copyright (C) 2008-2011 Ruben ARNAUD - rub@piwigo.org | |
---|
5 | // +-----------------------------------------------------------------------+ |
---|
6 | // | This program is free software; you can redistribute it and/or modify | |
---|
7 | // | it under the terms of the GNU General Public License as published by | |
---|
8 | // | the Free Software Foundation | |
---|
9 | // | | |
---|
10 | // | This program is distributed in the hope that it will be useful, but | |
---|
11 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
12 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
13 | // | General Public License for more details. | |
---|
14 | // | | |
---|
15 | // | You should have received a copy of the GNU General Public License | |
---|
16 | // | along with this program; if not, write to the Free Software | |
---|
17 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
18 | // | USA. | |
---|
19 | // +-----------------------------------------------------------------------+ |
---|
20 | |
---|
21 | /* |
---|
22 | Plugin Name: Fun Citation |
---|
23 | Version: auto |
---|
24 | Description: Add a french quote to your pages |
---|
25 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=256 |
---|
26 | Author: Ruben ARNAUD |
---|
27 | Author URI: http://photograph.piwigo.net/ |
---|
28 | */ |
---|
29 | |
---|
30 | if (!defined('PHPWG_ROOT_PATH')) |
---|
31 | { |
---|
32 | die('Hacking attempt!'); |
---|
33 | } |
---|
34 | |
---|
35 | function citation_header($page_banner) |
---|
36 | { |
---|
37 | global $conf; |
---|
38 | |
---|
39 | $page_name = script_basename(); |
---|
40 | if (! isset($conf['fun_citation_pages'])) |
---|
41 | { |
---|
42 | $conf['fun_citation_pages'] = array |
---|
43 | ( |
---|
44 | 'admin' => false, |
---|
45 | 'comments' => true, |
---|
46 | 'identification' => true, |
---|
47 | 'index' => true, |
---|
48 | 'password' => true, |
---|
49 | 'picture' => true, |
---|
50 | 'popuphelp' => true, |
---|
51 | 'profile' => true, |
---|
52 | 'register' => true, |
---|
53 | 'search' => true, |
---|
54 | 'tags' => true, |
---|
55 | ); |
---|
56 | } |
---|
57 | |
---|
58 | if (isset($conf['fun_citation_pages'][$page_name]) and $conf['fun_citation_pages'][$page_name]) |
---|
59 | { |
---|
60 | $code_citation = '<script type="text/javascript" src="http://citations.hasarddujour.com/citation-hasard-du-jour.php?random"></script>'; |
---|
61 | return $page_banner.$code_citation; |
---|
62 | } |
---|
63 | else |
---|
64 | { |
---|
65 | return $page_banner; |
---|
66 | } |
---|
67 | } |
---|
68 | |
---|
69 | add_event_handler('render_page_banner', 'citation_header'); |
---|
70 | |
---|
71 | |
---|
72 | ?> |
---|