| 1 | <?php |
|---|
| 2 | // +-----------------------------------------------------------------------+ |
|---|
| 3 | // | Plugin Name : Event Cats | |
|---|
| 4 | // | Plugin Version : 1.0 | |
|---|
| 5 | // | File Version : 1.0 | |
|---|
| 6 | // | Plugin Version author : LucMorizur | |
|---|
| 7 | // | Plugin description : (plugin for Piwigo, http://piwigo.org ) | |
|---|
| 8 | // | This plugin allows an account to be automatically logged in ; and to | |
|---|
| 9 | // | let users duplicate the account they are logged with, to get benefits | |
|---|
| 10 | // | of the groups of the previous account, immediately on their new acc. | |
|---|
| 11 | // | Ce plugin permet d'identifier automatiquement un compte ; et permet à | |
|---|
| 12 | // | un utilisateur de dupliquer un compte, pour que le nouveau compte | |
|---|
| 13 | // | bénéficie immédiatement de l'affectation aux groupes de l'ancien cpte | |
|---|
| 14 | // +-----------------------------------------------------------------------+ |
|---|
| 15 | |
|---|
| 16 | // +-----------------------------------------------------------------------+ |
|---|
| 17 | // | Piwigo - a PHP based picture gallery | |
|---|
| 18 | // +-----------------------------------------------------------------------+ |
|---|
| 19 | // | Copyright(C) 2008-2009 Piwigo Team http://piwigo.org | |
|---|
| 20 | // | Copyright(C) 2003-2008 PhpWebGallery Team http://phpwebgallery.net | |
|---|
| 21 | // | Copyright(C) 2002-2003 Pierrick LE GALL http://le-gall.net/pierrick | |
|---|
| 22 | // +-----------------------------------------------------------------------+ |
|---|
| 23 | // | This program is free software; you can redistribute it and/or modify | |
|---|
| 24 | // | it under the terms of the GNU General Public License as published by | |
|---|
| 25 | // | the Free Software Foundation | |
|---|
| 26 | // | | |
|---|
| 27 | // | This program is distributed in the hope that it will be useful, but | |
|---|
| 28 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
|---|
| 29 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
|---|
| 30 | // | General Public License for more details. | |
|---|
| 31 | // | | |
|---|
| 32 | // | You should have received a copy of the GNU General Public License | |
|---|
| 33 | // | along with this program; if not, write to the Free Software | |
|---|
| 34 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
|---|
| 35 | // | USA. | |
|---|
| 36 | // +-----------------------------------------------------------------------+ |
|---|
| 37 | |
|---|
| 38 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
|---|
| 39 | |
|---|
| 40 | global $ec_conf_default, $ec_conf; |
|---|
| 41 | |
|---|
| 42 | // +-----------------------------------------------------------------------+ |
|---|
| 43 | // | Global configuration management | |
|---|
| 44 | // +-----------------------------------------------------------------------+ |
|---|
| 45 | |
|---|
| 46 | // Gets $lang['Register'] and $lang['Duplicate'] |
|---|
| 47 | load_language('common.lang'); |
|---|
| 48 | load_language('duplic.lang', EVNTCATS_PATH); |
|---|
| 49 | |
|---|
| 50 | $template->assign( |
|---|
| 51 | 'ec_dup_link_conf', |
|---|
| 52 | sprintf( |
|---|
| 53 | l10n('Register replacement'), |
|---|
| 54 | ' <br />', // nicer line feed |
|---|
| 55 | $lang['Register'], |
|---|
| 56 | $lang['Duplicate'] |
|---|
| 57 | ) |
|---|
| 58 | ); |
|---|
| 59 | |
|---|
| 60 | // In case some $lang have the same index, overwrites them to have the ones |
|---|
| 61 | // needed here |
|---|
| 62 | load_language('plugin.lang', EVNTCATS_PATH); |
|---|
| 63 | |
|---|
| 64 | $template->assign('ec_ap_ok', defined('ADD_PAGES_TABLE')); |
|---|
| 65 | $template->assign('add_pages', $ec_lists['add_pages']); |
|---|
| 66 | |
|---|
| 67 | // Sends configuration values to the template, described per key |
|---|
| 68 | $ec_conf2 = array(); $i = 0; |
|---|
| 69 | foreach ($ec_conf_default as $k => $v) { $ec_conf2[$k] = $ec_conf[$i]; $i++; } |
|---|
| 70 | $template->assign('ec_conf', $ec_conf2); |
|---|
| 71 | |
|---|
| 72 | ?> |
|---|