get_image_link_fast fix
[mirrors/Kyberia-bloodline.git] / wwwroot / inc / smarty / node_methodz / function.get_image_link_fast.php
CommitLineData
35b74f20 1<?php
2// Faster alternative for geting user image link
3// (no db connection)
4// this is fine for example for viewing "K", much less db requests.
5
6function smarty_function_get_image_link_fast($params,&$smarty) {
7 $id = $params['id'];
8
9 if (!is_numeric($id)) { $id=0;}
37e8d239 10 $img = SYSTEM_IMAGES.'nodes/'.substr($id,0,1)."/".substr($id,1,1)."/$id.gif";
35b74f20 11
37e8d239 12 if (file_exists('./'.$img)) { echo "$img"; }
13 else { echo SYSTEM_IMAGES.'nodes/.gif'; }
35b74f20 14}
15?>
This page took 0.139202 seconds and 4 git commands to generate.