blob: 7f9aa026624b807b5f368a37d72970f63a20b4e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* Type: modifier
* Name: capitalize
* Purpose: capitalize words in the string
* -------------------------------------------------------------
*/
function smarty_modifier_iconify($string)
{
// XINGICON what are we going to do with this function? is this needed?
$string=substr($string,strlen($string)-3);
if(file_exists(IMG_PKG_PATH."icn/$string".".gif")) {
return "<img border='0' src='".IMG_PKG_URL."icn/${string}.gif' alt='icon' class='icon' />";
} else {
return "<img border='0' src='".IMG_PKG_URL."icn/else.gif' alt='icon' class='icon' />";
}
}
?>
|