1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: User Custom Fields |
---|
4 | Version: auto |
---|
5 | Description: Add User Custom Fields |
---|
6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=833 |
---|
7 | Author: ddtddt |
---|
8 | Author URI: http://temmii.com/piwigo/ |
---|
9 | */ |
---|
10 | |
---|
11 | // +-----------------------------------------------------------------------+ |
---|
12 | // | User Custom Fields plugin for Piwigo | |
---|
13 | // +-----------------------------------------------------------------------+ |
---|
14 | // | Copyright(C) 2016 ddtddt http://temmii.com/piwigo/ | |
---|
15 | // +-----------------------------------------------------------------------+ |
---|
16 | // | This program is free software; you can redistribute it and/or modify | |
---|
17 | // | it under the terms of the GNU General Public License as published by | |
---|
18 | // | the Free Software Foundation | |
---|
19 | // | | |
---|
20 | // | This program is distributed in the hope that it will be useful, but | |
---|
21 | // | WITHOUT ANY WARRANTY; without even the implied warranty of | |
---|
22 | // | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
---|
23 | // | General Public License for more details. | |
---|
24 | // | | |
---|
25 | // | You should have received a copy of the GNU General Public License | |
---|
26 | // | along with this program; if not, write to the Free Software | |
---|
27 | // | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, | |
---|
28 | // | USA. | |
---|
29 | // +-----------------------------------------------------------------------+ |
---|
30 | |
---|
31 | |
---|
32 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
33 | |
---|
34 | global $prefixeTable; |
---|
35 | |
---|
36 | define('UCF_DIR' , basename(dirname(__FILE__))); |
---|
37 | define('UCF_PATH' , PHPWG_PLUGINS_PATH . UCF_DIR . '/'); |
---|
38 | if (!defined('UCF_TABLE')) define('UCF_TABLE', $prefixeTable.'user_custom_fields'); |
---|
39 | if (!defined('UCFD_TABLE')) define('UCFD_TABLE', $prefixeTable.'user_custom_fields_data'); |
---|
40 | define('UCF_ADMIN',get_root_url().'admin.php?page=plugin-'.UCF_DIR); |
---|
41 | |
---|
42 | include_once(UCF_PATH . 'include/function.inc.php'); |
---|
43 | |
---|
44 | add_event_handler('loading_lang', 'user_custom_fields_loading_lang'); |
---|
45 | function user_custom_fields_loading_lang(){ |
---|
46 | load_language('plugin.lang', UCF_PATH); |
---|
47 | } |
---|
48 | |
---|
49 | //plugin on register |
---|
50 | if (script_basename() == 'register') |
---|
51 | { |
---|
52 | include_once(dirname(__FILE__).'/initregister.php'); |
---|
53 | } |
---|
54 | // Plugin on profile page |
---|
55 | if (script_basename() == 'profile') |
---|
56 | { |
---|
57 | include_once(dirname(__FILE__).'/initprofile.php'); |
---|
58 | } |
---|
59 | |
---|
60 | // Plugin for admin |
---|
61 | if (script_basename() == 'admin') |
---|
62 | { |
---|
63 | include_once(dirname(__FILE__).'/initadmin.php'); |
---|
64 | } |
---|
65 | |
---|
66 | ?> |
---|