source: extensions/ContestResults/main.inc.php @ 8804

Last change on this file since 8804 was 6795, checked in by mistic100, 14 years ago

Fix tooltips according ExtendedDescription state.

File size: 2.9 KB
Line 
1<?php
2/*
3Plugin Name: ContestResults
4Version: 1.1
5Description: Add contests management pages
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=439
7Author: Mistic
8Author URI: http://www.strangeplanet.fr
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13global $prefixeTable;
14
15// +-----------------------------------------------------------------------+
16//                      Variables globales CR
17// +-----------------------------------------------------------------------+
18define('CR_DIR' , basename(dirname(__FILE__)));
19define('CR_PATH' , PHPWG_PLUGINS_PATH . CR_DIR . '/');
20define('CR_TABLE_1' , $prefixeTable . 'contests');
21define('CR_TABLE_2' , $prefixeTable . 'contests_results');
22define('CR_NAME' , 'ContestResults');
23define('CR_VERSION', '1.1');
24define('CR_ADMIN', PHPWG_ROOT_PATH . 'admin.php?page=plugin&section=' . CR_DIR . '/admin/admin.php');
25define('CR_PUBLIC', make_index_url(array('section' => 'contests')) . '/');
26
27$ED = pwg_db_fetch_assoc(pwg_query("SELECT state FROM " . PLUGINS_TABLE . " WHERE id = 'ExtendedDescription';"));
28define('CR_ED_state', $ED['state']);
29
30
31// +-----------------------------------------------------------------------+
32//                              Trigger
33// +-----------------------------------------------------------------------+
34add_event_handler('get_admin_plugin_menu_links', 'CR_admin_menu');      // Lien d'administration
35add_event_handler('loc_end_section_init', 'CR_section_init');           // Paramètre URL
36add_event_handler('loc_end_index', 'CR_index');                                         // Contenu du la page
37add_event_handler('loc_end_picture', 'CR_comment_picture', 10);         // Commentaire sur la page image
38
39if(CR_ED_state == 'active') add_event_handler('render_CR_content', 'get_user_language_desc');   // Textes multilangues
40
41// Langues
42load_language('plugin.lang', CR_PATH);
43
44// Gestion du menu
45include(CR_PATH . 'include/cr_menubar.php');
46
47// Lien d'administration
48function CR_admin_menu($menu){
49        array_push($menu, array(
50                'NAME' => CR_NAME,
51                'URL' => CR_ADMIN
52        ));
53        return $menu;
54}
55
56// Paramètre URL
57function CR_section_init(){
58    global $tokens, $page, $conf;
59        include(CR_PATH . 'include/functions.php');
60       
61    if($tokens[0] == 'contests'){
62                $page['section'] = 'contests';
63                $page['title'] = l10n('Contests');
64                if(isset($tokens[1]) AND $tokens[1]){
65                        $page['contest'] = explode('-', $tokens[1]);
66                        $page['contest'] = $page['contest'][0];
67                        $page['title'] .= $conf['level_separator'] . trigger_event('render_CR_content', get_contest_name($page['contest']));
68                }
69        }
70}
71
72// Contenu du la page
73function CR_index(){
74    global $template, $page, $conf;
75    if(isset($page['section']) and $page['section'] == 'contests'){
76                if(isset($page['contest']))
77                        include(CR_PATH . 'include/cr_page.php');
78                else
79                        include(CR_PATH . 'include/cr_main.php');
80        }
81}
82
83// Ajoute le commentaire sur la page image
84function CR_comment_picture(){
85        global $page, $template, $conf;
86        include(CR_PATH . 'include/cr_comment_picture.php'); 
87}
88
89?>
Note: See TracBrowser for help on using the repository browser.