Changeset 30234 for extensions/ThumbnailTooltip/include/class.inc.php
- Timestamp:
- Oct 20, 2014, 2:08:13 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/ThumbnailTooltip/include/class.inc.php
r30100 r30234 1 1 <?php 2 2 3 4 5 3 class Thumbnail_Tooltip_IMG { 6 7 4 var $plugin_name, $plugin_path, $plugin_url; 8 9 5 var $my_config; 10 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 } 11 13 14 function initialize_event_handler() { 15 add_event_handler('loc_end_index_thumbnails', array($this, 'thumbnail_tooltip_affich'), 50, 2); 16 add_event_handler('loc_end_index_category_thumbnails', array($this, 'Author_Description_affich'), 50, 2); 17 } 12 18 13 function Thumbnail_Tooltip_IMG ($plugin_name, $plugin_path, $plugin_url) { 19 function thumbnail_tooltip_affich($tpl_var) { 20 global $user; 14 21 15 $this->plugin_name = $plugin_name; 22 $query = 'SELECT param, value, comment FROM ' . CONFIG_TABLE . ' WHERE param="thumbnail_tooltip"'; 23 $row = pwg_db_fetch_assoc( pwg_query($query) ); 16 24 17 $this->plugin_path = $plugin_path; 25 $params = unserialize($row['value']); 26 $values = array( 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'] 35 ); 36 18 37 19 $this->plugin_url = $plugin_url; 38 if ($params['display_name']==true) { 39 foreach($tpl_var as $cle=>$valeur) { 40 $query = " 41 SELECT name, hit, comment, author, rating_score, CONCAT(width, 'x', height) AS dimensions, filesize FROM ".IMAGES_TABLE." 42 WHERE id = ".(int)$tpl_var[$cle]['id']." 43 ;"; 44 $row = pwg_db_fetch_assoc( pwg_query($query) ); 20 45 21 $this->initialize_event_handler($plugin_name, $plugin_path, $plugin_url); 46 $details = array(); 47 $details_param = array(); 22 48 49 $details['tn_type1'] = addslashes(strip_tags($row['name'])); 50 51 if (!empty($row['hit'])) { 52 $details['tn_type2'] = $row['hit'].' '.strtolower(l10n('Visits')); 53 $details['tn_type3'] = '('.$row['hit'].' '.strtolower(l10n('Visits')).')'; 54 if (!empty($row['rating_score'])) { $type8 = ', '.strtolower(l10n('Rating score')).' '.$row['rating_score']; } else { $type8 = ''; } 55 $details['tn_type8'] = '('.$row['hit'].' '.strtolower(l10n('Visits')).$type8.')'; 56 } 57 58 if (!empty($row['comment'])) { 59 $details['tn_type4'] = addslashes(strip_tags($row['comment'])); 60 } 61 62 if (!empty($row['author'])) { 63 $details['tn_type5'] = $row['author']; 64 } 65 66 if (!empty($row['author'])) { 67 $details['tn_type6'] = (preg_match('#(,|\/)#i', $row['author'])) ? str_replace(array('(',')'), '', ucfirst(l10n('author(s) : %s', $row['author']))) : l10n('Author').' : '.$row['author']; 68 } 69 70 if (!empty($row['rating_score'])) { 71 $details['tn_type7'] = strtolower(l10n('Rating score')).' '.$row['rating_score']; 72 } 73 74 if (!empty($row['dimensions'])) { 75 $details['tn_type9'] = l10n('Dimensions').' : '.$row['dimensions']; 76 } 77 78 if (!empty($row['filesize'])) { 79 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'] = ' '; } 80 $details['tn_type9'].= l10n('Filesize').' : '.l10n('%d Kb', $row['filesize']); 81 } 82 83 if ((!empty($details[$values['value1']])) && ($details[$values['value1']]!='none')) { $details_param[] = $details[$values['value1']]; } 84 if ((!empty($details[$values['value2']])) && ($details[$values['value2']]!='none')) { $details_param[] = $details[$values['value2']]; } 85 if ((!empty($details[$values['value3']])) && ($details[$values['value3']]!='none')) { $details_param[] = $details[$values['value3']]; } 86 if ((!empty($details[$values['value4']])) && ($details[$values['value4']]!='none')) { $details_param[] = $details[$values['value4']]; } 87 if ((!empty($details[$values['value5']])) && ($details[$values['value5']]!='none')) { $details_param[] = $details[$values['value5']]; } 88 if ((!empty($details[$values['value6']])) && ($details[$values['value6']]!='none')) { $details_param[] = $details[$values['value6']]; } 89 90 if ($params['separator']=='1') { $title = implode(' - ', $details_param); } else { $title = implode(' ', $details_param); } 91 92 $tpl_var[$cle]['TN_TITLE'] = $title; 93 } 94 } 95 return $tpl_var; 23 96 } 24 97 25 98 99 function Author_Description_affich($tpl_var) { 100 global $user, $lang; 26 101 27 function initialize_event_handler() { 28 29 add_event_handler('loc_end_index_thumbnails', array($this, 'thumbnail_tooltip_affich'), 50, 2); 30 31 add_event_handler('loc_end_index_category_thumbnails', array($this, 'Author_Description_affich'), 50, 2); 32 33 } 34 35 36 37 function thumbnail_tooltip_affich($tpl_var) { 38 39 global $user; 40 41 42 43 $query = 'SELECT param, value, comment FROM ' . CONFIG_TABLE . ' WHERE param="thumbnail_tooltip"'; 44 102 $query = 'SELECT param, value, comment FROM ' . CONFIG_TABLE . ' WHERE param="thumbnail_tooltip";'; 45 103 $row = pwg_db_fetch_assoc( pwg_query($query) ); 46 104 47 48 49 $params = unserialize($row['value']);50 51 $values = array(52 53 'DISPLAY_NAME' => $params['display_name'],54 55 'value1' => $params['value1'],56 57 'value2' => $params['value2'],58 59 'value3' => $params['value3'],60 61 'value4' => $params['value4'],62 63 'value5' => $params['value5'],64 65 'value6' => $params['value6'],66 67 'separator' => $params['separator']68 69 );70 71 72 73 if ($params['display_name']==true) {74 75 foreach($tpl_var as $cle=>$valeur) {76 77 $query = "78 79 SELECT name, hit, comment, author, rating_score, CONCAT(width, 'x', height) AS dimensions, filesize FROM ".IMAGES_TABLE."80 81 WHERE id = ".(int)$tpl_var[$cle]['id']."82 83 ;";84 85 $row = pwg_db_fetch_assoc( pwg_query($query) );86 87 88 89 $details = array();90 91 $details_param = array();92 93 94 95 $details['tn_type1'] = $row['name'];96 97 98 99 if (!empty($row['hit'])) {100 101 $details['tn_type2'] = $row['hit'].' '.strtolower(l10n('Visits'));102 103 $details['tn_type3'] = '('.$row['hit'].' '.strtolower(l10n('Visits')).')';104 105 if (!empty($row['rating_score'])) { $type8 = ', '.strtolower(l10n('Rating score')).' '.$row['rating_score']; } else { $type8 = ''; }106 107 $details['tn_type8'] = '('.$row['hit'].' '.strtolower(l10n('Visits')).$type8.')';108 109 }110 111 if (!empty($row['comment'])) {112 113 $details['tn_type4'] = addslashes(strip_tags($row['comment']));114 115 }116 117 if (!empty($row['author'])) {118 119 $details['tn_type5'] = $row['author'];120 121 }122 123 if (!empty($row['author'])) {124 125 $details['tn_type6'] = (preg_match('#(,|\/)#i', $row['author'])) ? str_replace(array('(',')'), '', ucfirst(l10n('author(s) : %s', $row['author']))) : l10n('Author').' : '.$row['author'];126 127 }128 129 if (!empty($row['rating_score'])) {130 131 $details['tn_type7'] = strtolower(l10n('Rating score')).' '.$row['rating_score'];132 133 }134 135 if (!empty($row['dimensions'])) {136 137 $details['tn_type9'] = l10n('Dimensions').' : '.$row['dimensions'];138 139 }140 141 if (!empty($row['filesize'])) {142 143 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'] = ' '; }144 145 $details['tn_type9'].= l10n('Filesize').' : '.l10n('%d Kb', $row['filesize']);146 147 }148 149 150 151 if ((!empty($details[$values['value1']])) && ($details[$values['value1']]!='none')) { $details_param[] = $details[$values['value1']]; }152 153 if ((!empty($details[$values['value2']])) && ($details[$values['value2']]!='none')) { $details_param[] = $details[$values['value2']]; }154 155 if ((!empty($details[$values['value3']])) && ($details[$values['value3']]!='none')) { $details_param[] = $details[$values['value3']]; }156 157 if ((!empty($details[$values['value4']])) && ($details[$values['value4']]!='none')) { $details_param[] = $details[$values['value4']]; }158 159 if ((!empty($details[$values['value5']])) && ($details[$values['value5']]!='none')) { $details_param[] = $details[$values['value5']]; }160 161 if ((!empty($details[$values['value6']])) && ($details[$values['value6']]!='none')) { $details_param[] = $details[$values['value6']]; }162 163 164 165 if ($params['separator']=='1') { $title = implode(' - ', $details_param); } else { $title = implode(' ', $details_param); }166 167 168 169 $tpl_var[$cle]['TN_TITLE'] = $title;170 171 }172 173 }174 175 return $tpl_var;176 177 }178 179 180 181 182 183 function Author_Description_affich($tpl_var) {184 185 global $user, $lang;186 187 188 189 $query = 'SELECT param, value, comment FROM ' . CONFIG_TABLE . ' WHERE param="thumbnail_tooltip";';190 191 $row = pwg_db_fetch_assoc( pwg_query($query) );192 193 194 195 105 $params = unserialize($row['value']); 196 197 106 $values = array('DISPLAY_AUTHOR_CAT' => $params['display_author_cat']); 198 107 199 200 201 108 if ($params['display_author_cat']==true) { 202 203 109 foreach($tpl_var as $cle=>$valeur) { 204 205 110 $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"; 206 207 111 $result = pwg_query($query); 208 209 $row = pwg_db_fetch_assoc($result); 210 211 112 $row = pwg_db_fetch_assoc($result); 212 113 213 114 $auteur = ''; 214 115 215 116 if (!empty($row['author'])) { 216 217 117 do { 218 219 118 $auteur .= $row['author'].', '; 220 221 119 } while ($row = pwg_db_fetch_assoc($result)); 222 120 223 121 $auteur = substr($auteur, 0, -2); 224 225 122 if (preg_match('#(,|\/)#i', $auteur )) { $auteur = str_replace(array('(',')'), '', ucfirst(sprintf($lang['author(s) : %s'], $auteur))); } else { $auteur = $lang['Author'].' : '.$auteur ; } 226 227 123 if (!empty($tpl_var[$cle]['DESCRIPTION'])) { $tpl_var[$cle]['DESCRIPTION'] = $tpl_var[$cle]['DESCRIPTION'].'<br/>'.$auteur; } else { $tpl_var[$cle]['DESCRIPTION'] = $auteur; } 228 229 124 } 230 231 125 } 232 233 126 } 234 235 127 return $tpl_var; 236 237 128 } 238 239 129 } 240 130
Note: See TracChangeset
for help on using the changeset viewer.