Last change
on this file since 18785 was
15360,
checked in by grum, 12 years ago
|
feature:2635 - Compatibility with Piwigo 2.4
|
-
Property svn:executable set to
*
|
File size:
856 bytes
|
Line | |
---|
1 | <?php |
---|
2 | /* ----------------------------------------------------------------------------- |
---|
3 | Plugin : Advanced Search Engine |
---|
4 | Author : Grum |
---|
5 | email : grum@piwigo.org |
---|
6 | website : http://photos.grum.fr |
---|
7 | |
---|
8 | << May the Little SpaceFrog be with you ! >> |
---|
9 | ------------------------------------------------------------------------------ |
---|
10 | See main.inc.php for release information |
---|
11 | |
---|
12 | --------------------------------------------------------------------------- */ |
---|
13 | |
---|
14 | if (!defined('PHPWG_ROOT_PATH')) { die('Hacking attempt!'); } |
---|
15 | |
---|
16 | include(ASE_PATH."ase_aip.class.inc.php"); |
---|
17 | |
---|
18 | global $prefixeTable, $template; |
---|
19 | |
---|
20 | load_language('plugin.lang', ASE_PATH); |
---|
21 | load_language('rbuilder.lang', GPC_PATH); |
---|
22 | |
---|
23 | $main_plugin_object = get_plugin_data($plugin_id); |
---|
24 | |
---|
25 | |
---|
26 | $plugin_aip = new ASE_AIP($prefixeTable, $main_plugin_object->getFileLocation()); |
---|
27 | $plugin_aip->manage(); |
---|
28 | |
---|
29 | ?> |
---|
Note: See
TracBrowser
for help on using the repository browser.