[8946] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | * Plugin Name: ConcoursPhoto |
---|
[9364] | 4 | * Version: 2.0.0 |
---|
[8946] | 5 | * Description: Concours de photo paramétrable |
---|
| 6 | * Plugin URI: http://piwigo.org/ext/extension_view.php?eid=323 |
---|
| 7 | * Author: Tiico |
---|
| 8 | * Author URI: |
---|
| 9 | * */ |
---|
| 10 | /********* Fichier main.inc.php *********/ |
---|
| 11 | |
---|
| 12 | /* See CHANGELOG for release informations */ |
---|
| 13 | |
---|
| 14 | |
---|
| 15 | if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!'); |
---|
| 16 | |
---|
| 17 | global $prefixeTable; |
---|
| 18 | |
---|
[9364] | 19 | define('CONCOURS_VERSION', '2.0.0 [BETA]'); // |
---|
| 20 | |
---|
| 21 | |
---|
[8946] | 22 | define('CONCOURS_NAME', 'Concours Photo'); |
---|
| 23 | define('CONCOURS_ROOT', dirname(__FILE__)); |
---|
| 24 | define('CONCOURS_DIR' , basename(dirname(__FILE__))); |
---|
| 25 | define('CONCOURS_CFG_FILE' , CONCOURS_ROOT.'/'.CONCOURS_DIR.'.dat'); |
---|
| 26 | define('CONCOURS_CFG_FILE1' , PHPWG_PLUGINS_PATH.CONCOURS_DIR.'.dat'); |
---|
| 27 | define('CONCOURS_CFG_DB' , CONCOURS_DIR); |
---|
| 28 | define('CONCOURS_PATH' , PHPWG_PLUGINS_PATH . CONCOURS_DIR . '/'); |
---|
| 29 | define('CONCOURS_INC_PATH' , PHPWG_PLUGINS_PATH . CONCOURS_DIR . '/include/'); |
---|
| 30 | define('CONCOURS_IMG_PATH' , PHPWG_PLUGINS_PATH . CONCOURS_DIR . '/img/'); |
---|
| 31 | define('CONCOURS_ADMIN_PATH' , PHPWG_PLUGINS_PATH . CONCOURS_DIR . '/admin/'); |
---|
| 32 | define('CONCOURS_RESULT_FOLDER' , PHPWG_PLUGINS_PATH . CONCOURS_DIR . '/result/'); |
---|
| 33 | |
---|
| 34 | |
---|
| 35 | define('CONCOURS_TABLE' , $prefixeTable . 'concours'); |
---|
| 36 | define('CONCOURS_DETAIL_TABLE' , $prefixeTable . 'concours_detail'); |
---|
| 37 | define('CONCOURS_DATA_TABLE' , $prefixeTable . 'concours_data'); |
---|
| 38 | define('CONCOURS_RESULT_TABLE' , $prefixeTable . 'concours_result'); |
---|
| 39 | |
---|
| 40 | |
---|
| 41 | |
---|
| 42 | load_language('plugin.lang', CONCOURS_PATH); |
---|
| 43 | |
---|
| 44 | include_once CONCOURS_INC_PATH.'Concours.class.php'; |
---|
| 45 | global $page, $template; |
---|
| 46 | |
---|
| 47 | |
---|
| 48 | $concours = new Concours(); |
---|
| 49 | |
---|
| 50 | // Add concours to picture page |
---|
| 51 | add_event_handler('loc_end_picture', array(&$concours, 'display_concours_to_picture')); |
---|
| 52 | // Add admin page |
---|
| 53 | add_event_handler('get_admin_plugin_menu_links', array(&$concours, 'concours_admin_menu') ); |
---|
| 54 | |
---|
| 55 | // MenuBar |
---|
| 56 | add_event_handler('blockmanager_register_blocks', array(&$concours, 'register_blocks') ); |
---|
| 57 | add_event_handler('blockmanager_apply', array(&$concours, 'blockmanager_apply') ); |
---|
| 58 | |
---|
| 59 | add_event_handler('loc_end_section_init', array(&$concours, 'section_init_concours')); |
---|
| 60 | |
---|
| 61 | add_event_handler('loc_end_index', array(&$concours, 'index_concours')); |
---|
| 62 | |
---|
| 63 | // Add Global note under thumbnail |
---|
| 64 | add_event_handler('loc_end_index_thumbnails', array(&$concours, 'thumbnail_note'), 50, 2); |
---|
| 65 | |
---|
| 66 | |
---|
[9370] | 67 | |
---|
[8946] | 68 | set_plugin_data($plugin['id'], $concours) |
---|
| 69 | |
---|
| 70 | ?> |
---|