source: extensions/fun_citation/main.inc.php @ 11516

Last change on this file since 11516 was 8426, checked in by rub, 13 years ago

Add description.txt of my maintained extensions
Replace old link (http://phpwebgallery.net/ext/ by http://piwigo.org/ext/)

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.5 KB
Line 
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/*
22Plugin Name: Fun Citation
23Version: auto
24Description: Add a french quote to your pages
25Plugin URI: http://piwigo.org/ext/extension_view.php?eid=256
26Author: Ruben ARNAUD
27Author URI: http://photograph.piwigo.net/
28*/
29
30if (!defined('PHPWG_ROOT_PATH'))
31{
32  die('Hacking attempt!');
33}
34
35function 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
69add_event_handler('render_page_banner', 'citation_header');
70
71
72?>
Note: See TracBrowser for help on using the repository browser.