forked from Iddah/informea.plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimea.php
50 lines (40 loc) · 1.54 KB
/
imea.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php
/*
Plugin Name: InforMEA
Plugin URI: http://informea.org/
Description: This is the plugin that implements the InforMEA project search interface.
Version: 0.1
Author: cristiroma
Author URI: http://eaudeweb.ro
License: GPL2
*/
/* Copyright 2011 Eau De Web (email : [email protected])
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
define('INFORMEA_VERSION', '1.5');
if (!function_exists('add_action')) {
// Silence is golden
exit;
}
include_once ("recaptchalib.php");
include_once ("imea.class.php");
include_once ("imea.admin.class.php");
include_once ("ai_classes_overloaded.php");
include_once ("search/InformeaSearch2.php");
include_once ("search/AbstractSearch.php");
include_once ("search/CacheManager.php");
include_once ("search/InformeaSearchRenderer.php");
include_once ("search/InformeaSearch3.php");
include_once ("rss.php");
register_activation_hook(__FILE__, array('imeasite', 'install'));
register_uninstall_hook(__FILE__, array('imeasite', 'uninstall'));
?>