0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
3.2.0-5
/
standard
/
htdocs
/
lib
/
smarty_tiki
/
[
Home
]
File: modifier.countryflag.php
<?php /* $Id: modifier.countryflag.php 16903 2009-02-24 23:42:01Z luciash $ */ //this script may only be included - so its better to die if called directly. if (strpos($_SERVER["SCRIPT_NAME"],basename(__FILE__)) !== false) { header("location: index.php"); exit; } /** * \brief Smarty modifier plugin to add user's country flag * * - type: modifier * - name: countryflag * - purpose: Returns a specified user's country flag * * @author * @param string * @return string * * Example: {$userinfo.login|countryflag} */ function smarty_modifier_countryflag($user) { global $tikilib; $flag = $tikilib->get_user_preference($user,'country','Other'); if ($flag == 'Other' || empty($flag)) return ''; return "<img alt='".tra(str_replace('_',' ',$flag))."' src='img/flags/".$flag.".gif' title='".tra(str_replace('_',' ',$flag))."' />"; } ?>