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

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

update for 2.6

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