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

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

use new maintain class

File size: 2.2 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 $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
25include(CONTACT_FORM_PATH . 'include/functions.inc.php');
26
27
28add_event_handler('init', 'contact_form_init');
29
30if (defined('IN_ADMIN'))
31{
32  add_event_handler('get_admin_plugin_menu_links', 'contact_form_admin_menu');
33}
34else
35{
36  add_event_handler('loc_end_section_init', 'contact_form_section_init');
37  add_event_handler('loc_end_index', 'contact_form_page');
38}
39
40add_event_handler('blockmanager_apply', 'contact_form_applymenu', EVENT_HANDLER_PRIORITY_NEUTRAL+10);
41add_event_handler('before_parse_mail_template', 'contact_form_mail_template', EVENT_HANDLER_PRIORITY_NEUTRAL, 2);
42
43
44/**
45 * update & unserialize conf & load language & init emails
46 */
47function contact_form_init()
48{
49  global $conf, $template;
50
51  $conf['ContactForm'] = safe_unserialize($conf['ContactForm']);
52 
53  load_language('plugin.lang', CONTACT_FORM_PATH);
54  load_language('lang', PHPWG_ROOT_PATH.PWG_LOCAL_DIR, array('no_fallback'=>true, 'local'=>true));
55
56  if ($conf['ContactForm']['cf_must_initialize'])
57  {
58    contact_form_initialize_emails();
59  }
60
61  $conf['ContactForm_ready'] = count(get_contact_emails());
62
63  if ($conf['ContactForm_ready'] && (!is_a_guest() || $conf['ContactForm']['cf_allow_guest']))
64  {
65    $template->assign(array(
66      'CONTACT_MAIL' => true,
67      'CONTACT_FORM_PUBLIC' => CONTACT_FORM_PUBLIC,
68      ));
69    $template->set_prefilter('tail', 'contact_form_footer_link');
70  }
71}
72
73/**
74 * admin plugins menu link
75 */
76function contact_form_admin_menu($menu)
77{
78  $menu[] = array(
79    'URL' => CONTACT_FORM_ADMIN,
80    'NAME' => 'Contact Form',
81  );
82  return $menu;
83}
Note: See TracBrowser for help on using the repository browser.