| 1 | <?php |
|---|
| 2 | /* |
|---|
| 3 | Plugin Name: Crypto Captcha |
|---|
| 4 | Version: auto |
|---|
| 5 | Description: Add a CryptograPHP captcha to register, comment and ContactForm pages (thanks to P@t) |
|---|
| 6 | Plugin URI: http://piwigo.org/ext/extension_view.php?eid=535 |
|---|
| 7 | Author: Mistic |
|---|
| 8 | Author URI: http://www.strangeplanet.fr |
|---|
| 9 | */ |
|---|
| 10 | |
|---|
| 11 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
|---|
| 12 | define('CRYPTO_PATH' , PHPWG_PLUGINS_PATH . basename(dirname(__FILE__)) . '/'); |
|---|
| 13 | |
|---|
| 14 | add_event_handler('loc_end_section_init', 'crypto_init'); |
|---|
| 15 | |
|---|
| 16 | function crypto_init() |
|---|
| 17 | { |
|---|
| 18 | global $conf, $pwg_loaded_plugins, $page; |
|---|
| 19 | $conf['cryptographp_theme'] = explode(',', $conf['cryptographp_theme']); |
|---|
| 20 | |
|---|
| 21 | if (script_basename() == 'register') |
|---|
| 22 | { |
|---|
| 23 | include(CRYPTO_PATH.'include/register.inc.php'); |
|---|
| 24 | } |
|---|
| 25 | else if (script_basename() == 'picture' AND $conf['cryptographp_theme'][1] != 'inactive') |
|---|
| 26 | { |
|---|
| 27 | include(CRYPTO_PATH.'include/picture.inc.php'); |
|---|
| 28 | } |
|---|
| 29 | else if ( |
|---|
| 30 | script_basename() == 'index' AND $conf['cryptographp_theme'][1] != 'inactive' AND |
|---|
| 31 | isset($pwg_loaded_plugins['Comments_on_Albums']) AND |
|---|
| 32 | $page['section'] == 'categories' AND isset($page['category']) |
|---|
| 33 | ) { |
|---|
| 34 | include(CRYPTO_PATH.'include/category.inc.php'); |
|---|
| 35 | } |
|---|
| 36 | else if (isset($_GET['/contact'])) |
|---|
| 37 | { |
|---|
| 38 | include(CRYPTO_PATH.'include/contactform.inc.php'); |
|---|
| 39 | } |
|---|
| 40 | } |
|---|
| 41 | |
|---|
| 42 | if (script_basename() == 'admin') |
|---|
| 43 | { |
|---|
| 44 | add_event_handler('get_admin_plugin_menu_links', 'crypto_plugin_admin_menu'); |
|---|
| 45 | |
|---|
| 46 | function crypto_plugin_admin_menu($menu) |
|---|
| 47 | { |
|---|
| 48 | global $page,$conf; |
|---|
| 49 | |
|---|
| 50 | array_push( |
|---|
| 51 | $menu, |
|---|
| 52 | array( |
|---|
| 53 | 'NAME' => 'CryptograPHP', |
|---|
| 54 | 'URL' => get_root_url().'admin.php?page=plugin-'.basename(dirname(__FILE__)) |
|---|
| 55 | ) |
|---|
| 56 | ); |
|---|
| 57 | return $menu; |
|---|
| 58 | } |
|---|
| 59 | } |
|---|
| 60 | |
|---|
| 61 | ?> |
|---|