source: extensions/lmt/main.inc.php @ 16461

Last change on this file since 16461 was 16461, checked in by grum, 12 years ago

feature:2641 - compatibility with Piwigo 2.4
Update URI

  • Property svn:executable set to *
File size: 4.8 KB
RevLine 
[3396]1<?php
2/*
3Plugin Name: LMT
[15341]4Version: 1.4.0
[3396]5Description: Appliquer une licence sur ses photos / Apply a licence on photos
[10974]6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=282
[3396]7Author: grum@piwigo.org
[16461]8Author URI: http://www.grum.fr
[3396]9*/
10
11/*
12--------------------------------------------------------------------------------
13  Author     : Grum
14    email    : grum@piwigo.com
[16461]15    website  : http://www.grum.fr
[3396]16
17    << May the Little SpaceFrog be with you ! >>
18--------------------------------------------------------------------------------
19
20:: HISTORY
21
22| release | date       |
23| 1.0.0   | 2009/03/01 | first release
[5802]24|         |            |
[4396]25| 1.0.1   | 2009/05/01 | * modify de style for 80x15&text logo (to be centered
[3396]26|         |            |   like the 88x31 logo)
27|         |            | * modify the footer (allows to use html markup)
[5802]28|         |            |
[3412]29| 1.0.2   | 2009/06/12 | * the plugin can't manage picture if no physical category
30|         |            |   is affected (pictures uploaded with pLoader have
[4396]31|         |            |   only virtual categories). For now, use a LEFT OUTER JOIN
[3412]32|         |            |   on physical categorie ; virtual category management will
33|         |            |   be coded for the next release
[5802]34|         |            |
[4396]35| 1.0.3   | 2009/07/24 | * bug on "list" page when trying to add items in the
[3666]36|         |            |   caddie (==> topic #116263 on french forum)
[4396]37|         |            | * bug when displaying image's categories when image
[3666]38|         |            |   only have virtual categories / now display all image
[4396]39|         |            |   categories (physical & virtual)
40|         |            |   (==>topic #113337 on french forum)
[5802]41|         |            |
[4396]42| 1.1.0   | 2009/11/29 | * mantis : feature 1294
43|         |            |   Allow to open the licence page on a new page/tab when
44|         |            |   user clic on the licence hyperlink
45|         |            | * mantis : feature 1295
46|         |            |   Compatibility with theme 'montblanc'
[5802]47|         |            |
[5431]48| 1.2.0   | 2010/03/28 | * compatibility with Piwigo 2.1
[4396]49|         |            |
[5802]50| 1.2.1   | 2010/04/11 | * Fixed a minor bug in the display
[4396]51|         |            |
[6272]52| 1.2.2   | 2010/05/22 | * mantis : bug 1670
53|         |            |   . Call undefined function in file lmt_aip.class.php
54|         |            |     on line 720
[4396]55|         |            |
[10974]56| 1.3.0   | 2011/05/21 | * mantis : feature 1439
[6701]57|         |            |   . Add an "ALT" property to the licence picture
58|         |            |     => the "TITLE" property was also added
59|         |            | * mantis : feature 1690
60|         |            |   . Improve performances in admin page
[6703]61|         |            | * mantis : bug 1699
62|         |            |   . slashes should be stripped when displaying author
63|         |            |     names
[11342]64|         |            | * mantis feature:2150
[10974]65|         |            |   . compatibility with piwigo 2.2
66|         |            | * mantis bug:1689
[15341]67|         |            |   . Add possibility to search picture by licence
[4396]68|         |            |
[11342]69| 1.3.1   | 2011/06/13 | * mantis : feature 2333
70|         |            |   . Add the Public Domain licence.
[4396]71|         |            |
[15341]72| 1.4.0   | 2012/05/25 | * mantis feature:2641
73|         |            |   . compatibility with piwigo 2.4
[11342]74|         |            |
75|         |            |
[3396]76
[4396]77
[11342]78
79
80
[3396]81:: TO DO
82
83--------------------------------------------------------------------------------
84
85:: NFO
86  LMT_root : common classe for admin and public classes
87  LMT_AIM  : classe to manage plugin integration into plugin menu
88  LMT_AIP  : classe to manage plugin admin pages
89  LMT_PIP  : classe to manage plugin public pages
90
91--------------------------------------------------------------------------------
92*/
93
94// pour faciliter le debug :o)
95 //ini_set('error_reporting', E_ALL);
96 //ini_set('display_errors', true);
97
98if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
99
100
101define('LMT_DIR' , basename(dirname(__FILE__)));
102define('LMT_PATH' , PHPWG_PLUGINS_PATH . LMT_DIR . '/');
103
[11032]104include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/CommonPlugin.class.inc.php');
[5548]105include_once('lmt_version.inc.php'); // => Don't forget to update this file !!
[3396]106
107global $prefixeTable;
108
[16014]109if(!defined('AJAX_CALL'))
[3396]110{
[16014]111  if(defined('IN_ADMIN'))
[7560]112  {
[16014]113    //LMT admin interface loaded and active only if in admin page
114    include_once("lmt_aim.class.inc.php");
115    $obj=new LMT_AIM($prefixeTable, __FILE__);
116    $obj->initEvents();
117  }
118  else
119  {
[7560]120    //LMT public interface loaded and active only if in public page
[16014]121    if(CommonPlugin::checkGPCRelease(LMT_GPC_NEEDED) and !mobile_theme())
122    {
123      //LMT public interface loaded and active only if in public page
124      include_once("lmt_pip.class.inc.php");
125      $obj=new LMT_PIP($prefixeTable, __FILE__);
126    }
[7560]127  }
[3396]128}
129
130set_plugin_data($plugin['id'], $obj);
131
[3412]132?>
Note: See TracBrowser for help on using the repository browser.