source: extensions/ThumbnailTooltip/include/class.inc.php @ 28263

Last change on this file since 28263 was 28263, checked in by sarybe, 10 years ago

[thumbnailtooltip] update encodage iso -> utf8 in include/class.inc.php

File size: 5.6 KB
RevLine 
[27645]1<?php
2
3class Thumbnail_Tooltip_IMG {
4  var $plugin_name, $plugin_path, $plugin_url;
5  var $my_config;
6
7  function Thumbnail_Tooltip_IMG ($plugin_name, $plugin_path, $plugin_url) {
8    $this->plugin_name = $plugin_name;
9    $this->plugin_path = $plugin_path;
10    $this->plugin_url = $plugin_url;
11    $this->initialize_event_handler($plugin_name, $plugin_path, $plugin_url);
12  }
13
14  function initialize_event_handler() {
15    add_event_handler('loc_end_index_thumbnails', array($this, 'thumbnail_tooltip_affich'), 50, 2);
[28174]16    add_event_handler('loc_end_index_category_thumbnails', array($this, 'Author_Description_affich'), 50, 2);
[27645]17  }
18
19  function thumbnail_tooltip_affich($tpl_var) {
20    global $user;
21     
[28210]22        $query = 'SELECT param, value, comment FROM ' . CONFIG_TABLE . ' WHERE param="thumbnail_tooltip"';
23        $row = pwg_db_fetch_assoc( pwg_query($query) );
[27645]24 
[28210]25        $params = unserialize($row['value']);
26        $values = array(
[27645]27                  'DISPLAY_NAME'         => $params['display_name'],
28                  'value1'               => $params['value1'],
29                  'value2'               => $params['value2'],
30                  'value3'               => $params['value3'],
31                  'value4'               => $params['value4'],
32                  'value5'               => $params['value5'],
33                  'value6'               => $params['value6'],
34                  'separator'            => $params['separator']
[28210]35        );
36       
37        if ($params['display_name']==true) {
38      foreach($tpl_var as $cle=>$valeur) {
39        $query = "
[28262]40                  SELECT name, hit, comment, author, rating_score, CONCAT(width, 'x', height) AS dimensions, filesize FROM ".IMAGES_TABLE."
[28210]41                  WHERE id = ".(int)$tpl_var[$cle]['id']."
[27645]42                ;";
[28210]43            $row = pwg_db_fetch_assoc( pwg_query($query) );
[27645]44
[28210]45        $details = array();
46        $details_param = array();
[27645]47         
[28262]48        $details['tn_type1'] = $row['name'];
[27645]49
[28262]50        if (!empty($row['hit'])) {
51                  $details['tn_type2'] = $row['hit'].' '.strtolower(l10n('Visits'));
52                  $details['tn_type3'] = '('.$row['hit'].' '.strtolower(l10n('Visits')).')';
53              if (!empty($row['rating_score'])) { $type8 = ', '.strtolower(l10n('Rating score')).' '.$row['rating_score']; } else { $type8 = ''; }
54                  $details['tn_type8'] = '('.$row['hit'].' '.strtolower(l10n('Visits')).$type8.')';
[28210]55        }
[28262]56        if (!empty($row['comment'])) {
57                  $details['tn_type4'] = $row['comment'];
[28210]58        }
[28262]59        if (!empty($row['author'])) {
60                  $details['tn_type5'] = $row['author'];
[28210]61        }
[28262]62        if (!empty($row['author'])) {
63                  $details['tn_type6'] = (preg_match('#(,|\/)#i', $row['author'])) ? str_replace(array('(',')'), '', ucfirst(l10n('author(s) : %s', $row['author']))) : l10n('Author').' : '.$row['author'];
[28210]64        }
[28262]65        if (!empty($row['rating_score'])) {
66                  $details['tn_type7'] = strtolower(l10n('Rating score')).' '.$row['rating_score'];
[28210]67        }
[28262]68        if (!empty($row['dimensions'])) {
69                  $details['tn_type9'] = l10n('Dimensions').' : '.$row['dimensions'];
[28210]70        }
[28262]71                if (!empty($row['filesize'])) {
72                  if (($params['separator']=='1') && (!empty($details['tn_type9']))) { $details['tn_type9'].= ' - '; } elseif (($params['separator']!='1') && (!empty($details['tn_type9']))) { $details['tn_type9'].= ' '; } else { $details['tn_type9'] = ' '; } 
73                  $details['tn_type9'].= l10n('Filesize').' : '.l10n('%d Kb', $row['filesize']); 
74                }
[27645]75                 
[28210]76        if ((!empty($details[$values['value1']])) && ($details[$values['value1']]!='none')) { $details_param[] = $details[$values['value1']]; }
77        if ((!empty($details[$values['value2']])) && ($details[$values['value2']]!='none')) { $details_param[] = $details[$values['value2']]; }
78        if ((!empty($details[$values['value3']])) && ($details[$values['value3']]!='none')) { $details_param[] = $details[$values['value3']]; }
79        if ((!empty($details[$values['value4']])) && ($details[$values['value4']]!='none')) { $details_param[] = $details[$values['value4']]; }
80        if ((!empty($details[$values['value5']])) && ($details[$values['value5']]!='none')) { $details_param[] = $details[$values['value5']]; }
81        if ((!empty($details[$values['value6']])) && ($details[$values['value6']]!='none')) { $details_param[] = $details[$values['value6']]; }
[27645]82         
[28210]83        if ($params['separator']=='1') { $title = implode(' - ', $details_param); } else { $title = implode(' ', $details_param); }
[27645]84         
[28210]85        $tpl_var[$cle]['TN_TITLE'] = $title;
86      }
[27645]87    }
88    return $tpl_var;
89  }
[28174]90 
91  function Author_Description_affich($tpl_var) {
[28210]92    global $user, $lang;
[28174]93
94        $query = 'SELECT param, value, comment FROM ' . CONFIG_TABLE . ' WHERE param="thumbnail_tooltip";';
95        $row = pwg_db_fetch_assoc( pwg_query($query) );
96 
97    $params = unserialize($row['value']);
98        $values = array('DISPLAY_AUTHOR_CAT' => $params['display_author_cat']);
99       
100        if ($params['display_author_cat']==true) {
101      foreach($tpl_var as $cle=>$valeur) {
[28262]102        $query = "SELECT author FROM ".IMAGE_CATEGORY_TABLE." INNER JOIN ".IMAGES_TABLE." ON image_id = id WHERE category_id = ".(int)$tpl_var[$cle]['id']." AND author<>'' GROUP BY author";
[28174]103            $result = pwg_query($query);
104            $row = pwg_db_fetch_assoc($result);
[28262]105               
106                $auteur = '';
[28174]107            if (!empty($row['author'])) {
[28262]108                  do {
109                    $auteur .= $row['author'].', ';
110                  } while ($row = pwg_db_fetch_assoc($result));
111                  $auteur = substr($auteur, 0, -2);
112              if (preg_match('#(,|\/)#i', $auteur )) { $auteur = str_replace(array('(',')'), '', ucfirst(sprintf($lang['author(s) : %s'], $auteur))); } else { $auteur = $lang['Author'].' : '.$auteur ; }
[28210]113              if (!empty($tpl_var[$cle]['DESCRIPTION'])) { $tpl_var[$cle]['DESCRIPTION'] = $tpl_var[$cle]['DESCRIPTION'].'<br/>'.$auteur; } else { $tpl_var[$cle]['DESCRIPTION'] = $auteur; }
[28174]114            }
115      }
116    }
117    return $tpl_var;
118  }
[27645]119}
120?>
Note: See TracBrowser for help on using the repository browser.