[5961] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | Plugin Name: ColorStat |
---|
[8543] | 4 | Version: 1.0.3 |
---|
[5961] | 5 | Description: Allow to make stat on pictures colors |
---|
[6210] | 6 | Plugin URI: http://phpwebgallery.net/ext/extension_view.php?eid=393 |
---|
[5961] | 7 | Author: grum@piwigo.org |
---|
| 8 | Author 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 | |
---|
[6258] | 24 | | 0.1.0 | 2010/04/21 | * start to coding |
---|
[5961] | 25 | | | | |
---|
[6258] | 26 | | 1.0.0 | 2010/05/17 | * first release for PEM |
---|
[5961] | 27 | | | | |
---|
[6258] | 28 | | 1.0.1 | 2010/05/20 | * fix bug:1657 |
---|
| 29 | | | | . Constant not defined |
---|
[5961] | 30 | | | | |
---|
[6893] | 31 | | 1.0.2 | 2010/09/12 | * mantis bug:1796 |
---|
| 32 | | | | . Images color-search broken |
---|
[8543] | 33 | | | | |
---|
[6893] | 34 | | | | * mantis bug:1854 |
---|
| 35 | | | | . Not analyzed pictures are selected |
---|
[8543] | 36 | | | | |
---|
[6893] | 37 | | | | * update the plugin to request builder v 1.1.0 |
---|
[5961] | 38 | | | | |
---|
[8543] | 39 | | 1.0.3 | 2010/09/12 | * mantis bug:2074 |
---|
| 40 | | | | . No image are analyzed |
---|
[5961] | 41 | | | | |
---|
| 42 | | | | |
---|
| 43 | | | | |
---|
| 44 | | | | |
---|
| 45 | | | | |
---|
| 46 | | | | |
---|
| 47 | | | | |
---|
| 48 | | | | |
---|
| 49 | | | | |
---|
| 50 | | | | |
---|
| 51 | |
---|
| 52 | |
---|
| 53 | :: TO DO |
---|
| 54 | |
---|
| 55 | -------------------------------------------------------------------------------- |
---|
| 56 | |
---|
| 57 | :: NFO |
---|
| 58 | CStat_root : common classe for admin and public classes |
---|
| 59 | CStat_AIM : classe to manage plugin integration into plugin menu |
---|
| 60 | CStat_AIP : classe to manage plugin admin pages |
---|
| 61 | CStat_PIP : classe to manage plugin public pages |
---|
| 62 | |
---|
| 63 | -------------------------------------------------------------------------------- |
---|
| 64 | */ |
---|
| 65 | |
---|
| 66 | // pour faciliter le debug :o) |
---|
| 67 | //ini_set('error_reporting', E_ALL); |
---|
| 68 | //ini_set('display_errors', true); |
---|
| 69 | |
---|
| 70 | if(!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 71 | |
---|
| 72 | |
---|
| 73 | define('CSTAT_DIR' , basename(dirname(__FILE__))); |
---|
| 74 | define('CSTAT_PATH' , PHPWG_PLUGINS_PATH . CSTAT_DIR . '/'); |
---|
| 75 | |
---|
| 76 | include_once('cstat_version.inc.php'); // => Don't forget to update this file !! |
---|
| 77 | |
---|
| 78 | global $prefixeTable; |
---|
| 79 | |
---|
| 80 | if(defined('IN_ADMIN')) |
---|
| 81 | { |
---|
| 82 | //CStat admin interface loaded and active only if in admin page |
---|
| 83 | include_once("cstat_aim.class.inc.php"); |
---|
[6176] | 84 | CStat_functions::init($prefixeTable); |
---|
[5961] | 85 | $obj=new CStat_AIM($prefixeTable, __FILE__); |
---|
| 86 | $obj->initEvents(); |
---|
| 87 | set_plugin_data($plugin['id'], $obj); |
---|
| 88 | } |
---|
| 89 | else |
---|
| 90 | { |
---|
| 91 | //CStat public interface loaded and active only if in public page |
---|
[6107] | 92 | include_once("cstat_pip.class.inc.php"); |
---|
[6210] | 93 | CStat_functions::init($prefixeTable); |
---|
[5961] | 94 | $obj=new CStat_PIP($prefixeTable, __FILE__); |
---|
| 95 | set_plugin_data($plugin['id'], $obj); |
---|
| 96 | } |
---|
| 97 | |
---|
| 98 | |
---|
| 99 | |
---|
| 100 | ?> |
---|