source: extensions/ContestResults/admin/get_tn.php @ 9200

Last change on this file since 9200 was 9200, checked in by mistic100, 13 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: 766 bytes
Line 
1<?php
2define('PHPWG_ROOT_PATH','../../../');
3define('IN_ADMIN', true);
4include_once(PHPWG_ROOT_PATH.'include/common.inc.php');
5
6$image = pwg_query("SELECT id, name, file, path, tn_ext
7        FROM " . IMAGES_TABLE . "
8        WHERE id = " . pwg_db_real_escape_string($_GET['image_id']) . ";");
9
10if (!pwg_db_num_rows($image)) {
11        $themeconf = $template->get_template_vars('themeconf');
12        $data['TN_SRC'] = $themeconf['admin_icon_dir'] . '/errors.png';
13        $data['IMAGE_NAME'] = 'N/A';
14       
15} else {
16        $image = pwg_db_fetch_assoc($image);
17        $data['TN_SRC'] = get_thumbnail_url($image);
18        $data['IMAGE_NAME'] = (empty($image['name'])) ? get_name_from_file($image['file']) : $image['name'];
19}
20
21echo "<img src='" . str_replace('../../.', '', $data['TN_SRC']) . "'/><br>" . $data['IMAGE_NAME'];
22?>
Note: See TracBrowser for help on using the repository browser.