1 | <?php |
---|
2 | /* |
---|
3 | Plugin Name: Contact Form |
---|
4 | Version: auto |
---|
5 | Description: Add a "Contact" item in the Menu block to offer a contact form to users |
---|
6 | Plugin URI: auto |
---|
7 | Author: Piwigo Team |
---|
8 | Author URI: http://piwigo.org |
---|
9 | */ |
---|
10 | |
---|
11 | /* |
---|
12 | * $conf['contact_form_show_ip'] = true; |
---|
13 | */ |
---|
14 | |
---|
15 | defined('PHPWG_ROOT_PATH') or die('Hacking attempt!'); |
---|
16 | |
---|
17 | global $conf, $prefixeTable; |
---|
18 | |
---|
19 | define('CONTACT_FORM_ID', basename(dirname(__FILE__))); |
---|
20 | define('CONTACT_FORM_PATH', PHPWG_PLUGINS_PATH . CONTACT_FORM_ID . '/'); |
---|
21 | define('CONTACT_FORM_ADMIN', get_root_url() . 'admin.php?page=plugin-' . CONTACT_FORM_ID); |
---|
22 | define('CONTACT_FORM_PUBLIC', get_absolute_root_url() . make_index_url(array('section' => 'contact')) . '/'); |
---|
23 | define('CONTACT_FORM_TABLE', $prefixeTable .'contact_form'); |
---|
24 | |
---|
25 | $conf['ContactForm'] = safe_unserialize($conf['ContactForm']); |
---|
26 | |
---|
27 | include(CONTACT_FORM_PATH . 'include/functions.inc.php'); |
---|
28 | |
---|
29 | |
---|
30 | add_event_handler('init', 'contact_form_init'); |
---|
31 | |
---|
32 | if (defined('IN_ADMIN')) |
---|
33 | { |
---|
34 | add_event_handler('get_admin_plugin_menu_links', 'contact_form_admin_menu'); |
---|
35 | } |
---|
36 | else |
---|
37 | { |
---|
38 | add_event_handler('loc_end_section_init', 'contact_form_section_init'); |
---|
39 | add_event_handler('loc_end_index', 'contact_form_page'); |
---|
40 | } |
---|
41 | |
---|
42 | if ($conf['ContactForm']['cf_menu_link']) |
---|
43 | { |
---|
44 | add_event_handler('blockmanager_apply', 'contact_form_applymenu', EVENT_HANDLER_PRIORITY_NEUTRAL+10); |
---|
45 | } |
---|
46 | |
---|
47 | add_event_handler('before_parse_mail_template', 'contact_form_mail_template'); |
---|
48 | |
---|
49 | |
---|
50 | /** |
---|
51 | * update & unserialize conf & load language & init emails |
---|
52 | */ |
---|
53 | function contact_form_init() |
---|
54 | { |
---|
55 | global $conf, $template; |
---|
56 | |
---|
57 | load_language('plugin.lang', CONTACT_FORM_PATH); |
---|
58 | load_language('lang', PHPWG_ROOT_PATH.PWG_LOCAL_DIR, array('no_fallback'=>true, 'local'=>true)); |
---|
59 | |
---|
60 | if ($conf['ContactForm']['cf_must_initialize']) |
---|
61 | { |
---|
62 | contact_form_initialize_emails(); |
---|
63 | } |
---|
64 | |
---|
65 | $conf['ContactForm_ready'] = count(get_contact_emails()); |
---|
66 | |
---|
67 | if ($conf['ContactForm_ready'] && (!is_a_guest() || $conf['ContactForm']['cf_allow_guest'])) |
---|
68 | { |
---|
69 | $template->assign(array( |
---|
70 | 'CONTACT_MAIL' => true, |
---|
71 | 'CONTACT_FORM_PUBLIC' => CONTACT_FORM_PUBLIC, |
---|
72 | )); |
---|
73 | $template->set_prefilter('tail', 'contact_form_footer_link'); |
---|
74 | } |
---|
75 | } |
---|
76 | |
---|
77 | /** |
---|
78 | * admin plugins menu link |
---|
79 | */ |
---|
80 | function contact_form_admin_menu($menu) |
---|
81 | { |
---|
82 | $menu[] = array( |
---|
83 | 'URL' => CONTACT_FORM_ADMIN, |
---|
84 | 'NAME' => 'Contact Form', |
---|
85 | ); |
---|
86 | return $menu; |
---|
87 | } |
---|