source: extensions/EasyCaptcha/main.inc.php @ 27149

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

try to simplify integration of captchas

File size: 2.7 KB
RevLine 
[24215]1<?php
2/*
3Plugin Name: Easy Captcha
4Version: auto
[24233]5Description: A fun antibot system for comments, registration, ContactForm and GuestBook.
[24215]6Plugin URI: auto
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11defined('PHPWG_ROOT_PATH') or die('Hacking attempt!');
12
[26025]13// TODO : captcha on mobile
[24215]14if (mobile_theme())
15{
16  return;
17}
18
[26025]19define('EASYCAPTCHA_ID',      basename(dirname(__FILE__)));
20define('EASYCAPTCHA_PATH' ,   PHPWG_PLUGINS_PATH . EASYCAPTCHA_ID . '/');
21define('EASYCAPTCHA_ADMIN',   get_root_url() . 'admin.php?page=plugin-' . EASYCAPTCHA_ID);
[24215]22define('EASYCAPTCHA_VERSION', 'auto');
23
24
25add_event_handler('init', 'easycaptcha_init');
26
27if (defined('IN_ADMIN'))
28{
29  add_event_handler('get_admin_plugin_menu_links', 'easycaptcha_plugin_admin_menu');
30}
31else
32{
[24234]33  add_event_handler('loc_end_section_init', 'easycaptcha_document_init', EVENT_HANDLER_PRIORITY_NEUTRAL+30);
[26069]34  add_event_handler('loc_begin_register', 'easycaptcha_register_init', EVENT_HANDLER_PRIORITY_NEUTRAL+30);
[24215]35}
36
37
38// plugin init
39function easycaptcha_init()
40{
41  global $conf, $pwg_loaded_plugins;
42
[26025]43  include_once(EASYCAPTCHA_PATH . 'maintain.inc.php');
44  $maintain = new EasyCaptcha_maintain(EASYCAPTCHA_ID);
45  $maintain->autoUpdate(EASYCAPTCHA_VERSION, 'install');
[24215]46
47  load_language('plugin.lang', EASYCAPTCHA_PATH);
48  $conf['EasyCaptcha'] = unserialize($conf['EasyCaptcha']);
49}
50
51
[24234]52// modules
[24215]53function easycaptcha_document_init()
54{
[24234]55  global $conf, $pwg_loaded_plugins, $page;
[24215]56
[26025]57  if (!is_a_guest())
58  {
59    return;
60  }
[24215]61
[26069]62  if (script_basename() == 'picture' && $conf['EasyCaptcha']['activate_on']['picture'])
[24215]63  {
64    include(EASYCAPTCHA_PATH . 'include/picture.inc.php');
65  }
[24234]66  else if (isset($page['section']))
[24215]67  {
[24234]68    if (
69      script_basename() == 'index' &&
70      $page['section'] == 'categories' && isset($page['category']) &&
71      isset($pwg_loaded_plugins['Comments_on_Albums']) &&
72      $conf['EasyCaptcha']['activate_on']['category']
73      )
74    {
75      include(EASYCAPTCHA_PATH . 'include/category.inc.php');
76    }
[26025]77    else if ($page['section'] == 'contact' && $conf['EasyCaptcha']['activate_on']['contactform'])
[24234]78    {
79      include(EASYCAPTCHA_PATH . 'include/contactform.inc.php');
80    }
[26025]81    else if ($page['section'] == 'guestbook' && $conf['EasyCaptcha']['activate_on']['guestbook'])
[24234]82    {
83      include(EASYCAPTCHA_PATH . 'include/guestbook.inc.php');
84    }
[24215]85  }
86}
[26069]87function easycaptcha_register_init()
88{
89  global $conf;
[24215]90
[26069]91  if (!is_a_guest())
92  {
93    return;
94  }
[24215]95
[26069]96  if ($conf['EasyCaptcha']['activate_on']['register'])
97  {
98    include(EASYCAPTCHA_PATH . 'include/register.inc.php');
99  }
100}
101
102
[24215]103// admin
104function easycaptcha_plugin_admin_menu($menu)
105{
[26025]106  $menu[] = array(
[24215]107    'NAME' => 'Easy Captcha',
108    'URL' => EASYCAPTCHA_ADMIN,
[26025]109    );
[24215]110  return $menu;
111}
Note: See TracBrowser for help on using the repository browser.