source: extensions/ASearchEngine/main.inc.php @ 11516

Last change on this file since 11516 was 10886, checked in by grum, 13 years ago

feature:2145 - compatibility with piwigo 2.2

  • Property svn:executable set to *
File size: 3.2 KB
Line 
1<?php
2/*
3Plugin Name: Advanced Search Engine
4Version: 1.1.0
5Description: An advanced search engine
6Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=
7Author: grum@piwigo.org
8Author URI: http://photos.grum.fr
9*/
10
11/*
12--------------------------------------------------------------------------------
13  Author     : Grum
14    email    : grum@piwigo.com
15    website  : http://photos.grum.fr
16    PWG user : http://forum.phpwebgallery.net/profile.php?id=3706
17
18    << May the Little SpaceFrog be with you ! >>
19--------------------------------------------------------------------------------
20
21:: HISTORY
22
23| release | date       |
24| 0.1.0   | 2010-10-14 | * first lines of code
25|         |            |   . release not published
26|         |            |
27| 1.0.0   | 2010-10-26 | * plugin published
28|         |            |
29| 1.0.1   | 2010-10-26 | * mantis bug:1958
30|         |            |   . Not possible to configure public gallery for non
31|         |            |     french user
32|         |            |
33|         |            | * mantis bug:1959
34|         |            |   . Translation is not correct for RBuilder keys
35|         |            |
36| 1.0.2   | 2010-10-27 | * mantis bug:1963
37|         |            |   . Compatibiliy with AdvancedMenuManager
38|         |            |
39|         |            | * mantis bug:1961
40|         |            |   . Search Engine is accessible from gallery users even
41|         |            |     if not activated
42|         |            |
43| 1.0.3   | 2010-10-28 | * mantis bug:1970
44|         |            |   . optimization in css management
45|         |            |
46| 1.1.0   | 2011-04-26 | * mantis bug:2145
47|         |            |   . Compatibility with Piwigo 2.2
48|         |            |
49|         |            |
50|         |            |
51|         |            |
52|         |            |
53|         |            |
54|         |            |
55
56
57:: TO DO
58
59--------------------------------------------------------------------------------
60
61:: NFO
62  ASE_root : common classe for admin and public classes
63  ASE_AIM  : classe to manage plugin integration into plugin menu
64  ASE_AIP  : classe to manage plugin admin pages
65  ASE_PIP  : classe to manage plugin public pages
66
67--------------------------------------------------------------------------------
68*/
69
70// pour faciliter le debug :o)
71 //ini_set('error_reporting', E_ALL);
72 //ini_set('display_errors', true);
73
74if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
75
76
77define('ASE_DIR' , basename(dirname(__FILE__)));
78define('ASE_PATH' , PHPWG_PLUGINS_PATH . ASE_DIR . '/');
79
80include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/CommonPlugin.class.inc.php');
81include_once('ase_version.inc.php'); // => Don't forget to update this file !!
82
83global $prefixeTable;
84
85if(defined('IN_ADMIN'))
86{
87  //ASE admin interface loaded and active only if in admin page
88  include_once("ase_aim.class.inc.php");
89  $obj=new ASE_AIM($prefixeTable, __FILE__);
90  $obj->initEvents();
91}
92else
93{
94  if(CommonPlugin::checkGPCRelease(ASE_GPC_NEEDED))
95  {
96    //ASE public interface loaded and active only if in public page
97    include_once("ase_pip.class.inc.php");
98    $obj=new ASE_PIP($prefixeTable, __FILE__);
99  }
100}
101
102set_plugin_data($plugin['id'], $obj);
103
104?>
Note: See TracBrowser for help on using the repository browser.