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

Last change on this file since 9229 was 9200, checked in by mistic100, 14 years ago

ContestResults :

  • Code revision
  • Add Letton (lv_LV) language, thanks to Aivars Baldone
  • Delete display options
  • Fix languages bugs
  • Improve public appearence
File size: 3.3 KB
RevLine 
[6768]1<?php
2/*
3Plugin Name: ContestResults
[9200]4Version: 1.2
[6768]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
[9200]13global $prefixeTable, $conf;
[6768]14
15// +-----------------------------------------------------------------------+
[9200]16//                              Variables globales CR
[6768]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');
[9200]23define('CR_VERSION', '1.2');
24define('CR_ADMIN', PHPWG_ROOT_PATH . 'admin.php?page=plugin&amp;section=' . CR_DIR . '/admin/admin.php');
[6768]25define('CR_PUBLIC', make_index_url(array('section' => 'contests')) . '/');
26
[6795]27$ED = pwg_db_fetch_assoc(pwg_query("SELECT state FROM " . PLUGINS_TABLE . " WHERE id = 'ExtendedDescription';"));
[9200]28define('CR_ED_STATE', $ED['state']);
[6782]29
[6795]30
[6782]31// +-----------------------------------------------------------------------+
[9200]32//                                      Triggers
[6782]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
[9200]38if(CR_ED_STATE == 'active') add_event_handler('render_CR_content', 'get_user_language_desc');   // Textes multilangues
[6782]39
40
[9200]41// +-----------------------------------------------------------------------+
42//                                      Fonctions
43// +-----------------------------------------------------------------------+
[6768]44// Gestion du menu
45include(CR_PATH . 'include/cr_menubar.php');
46
47// Lien d'administration
[9200]48function CR_admin_menu($menu) {
[6768]49        array_push($menu, array(
50                'NAME' => CR_NAME,
51                'URL' => CR_ADMIN
52        ));
53        return $menu;
54}
55
56// Paramètre URL
[9200]57function CR_section_init() {
[6782]58    global $tokens, $page, $conf;
[9200]59       
60        load_language('plugin.lang', CR_PATH);
[6782]61        include(CR_PATH . 'include/functions.php');
62       
[9200]63    if ($tokens[0] == 'contests') { // on est dans la section concours
[6768]64                $page['section'] = 'contests';
65                $page['title'] = l10n('Contests');
[9200]66               
67                if (isset($tokens[1]) AND $tokens[1]) { // on est sur la page d'un concours
[6768]68                        $page['contest'] = explode('-', $tokens[1]);
69                        $page['contest'] = $page['contest'][0];
[6782]70                        $page['title'] .= $conf['level_separator'] . trigger_event('render_CR_content', get_contest_name($page['contest']));
[6768]71                }
72        }
73}
74
[9200]75// Contenu de la page
76function CR_index() {
[6782]77    global $template, $page, $conf;
[9200]78
79    if (isset($page['section']) and $page['section'] == 'contests') {
80                if (isset($page['contest'])) { // on est sur la page d'un concours
[6768]81                        include(CR_PATH . 'include/cr_page.php');
[9200]82                } else { // on est dans la section concours
[6768]83                        include(CR_PATH . 'include/cr_main.php');
[9200]84                }
[6768]85        }
86}
87
88// Ajoute le commentaire sur la page image
[9200]89function CR_comment_picture() {
[6768]90        global $page, $template, $conf;
91        include(CR_PATH . 'include/cr_comment_picture.php'); 
92}
93
94?>
Note: See TracBrowser for help on using the repository browser.