source: extensions/ContactForm/main.inc.php @ 28882

Last change on this file since 28882 was 28882, checked in by mistic100, 10 years ago

block menu link sooner, add identifier for menu link

File size: 2.3 KB
Line 
1<?php
2/*
3Plugin Name: Contact Form
4Version: auto
5Description: Add a "Contact" item in the Menu block to offer a contact form to users
6Plugin URI: auto
7Author: Piwigo Team
8Author URI: http://piwigo.org
9*/
10
11/*
12 * $conf['contact_form_show_ip'] = true;
13 */
14
15defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
16
17global $conf, $prefixeTable;
18
19define('CONTACT_FORM_ID',     basename(dirname(__FILE__)));
20define('CONTACT_FORM_PATH',   PHPWG_PLUGINS_PATH . CONTACT_FORM_ID . '/');
21define('CONTACT_FORM_ADMIN',  get_root_url() . 'admin.php?page=plugin-' . CONTACT_FORM_ID);
22define('CONTACT_FORM_PUBLIC', get_absolute_root_url() . make_index_url(array('section' => 'contact')) . '/');
23define('CONTACT_FORM_TABLE',  $prefixeTable .'contact_form');
24
25$conf['ContactForm'] = safe_unserialize($conf['ContactForm']);
26
27include(CONTACT_FORM_PATH . 'include/functions.inc.php');
28
29
30add_event_handler('init', 'contact_form_init');
31
32if (defined('IN_ADMIN'))
33{
34  add_event_handler('get_admin_plugin_menu_links', 'contact_form_admin_menu');
35}
36else
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
42if ($conf['ContactForm']['cf_menu_link'])
43{
44  add_event_handler('blockmanager_apply', 'contact_form_applymenu', EVENT_HANDLER_PRIORITY_NEUTRAL+10);
45}
46
47add_event_handler('before_parse_mail_template', 'contact_form_mail_template');
48
49
50/**
51 * update & unserialize conf & load language & init emails
52 */
53function 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 */
80function contact_form_admin_menu($menu)
81{
82  $menu[] = array(
83    'URL' => CONTACT_FORM_ADMIN,
84    'NAME' => 'Contact Form',
85  );
86  return $menu;
87}
Note: See TracBrowser for help on using the repository browser.