0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
tikiwiki
/
1.9.7-31
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_translated.php
<?php // Links to another page that provides a translation // Use: // {TRANSLATED()}url{TRANSLATED} // (flag=>France) indicates the flag to use. default empty (no flag) // (lang=>xx) iso code of the lang of the translated content // function wikiplugin_translated_help() { return tra("Links to a translated content").":<br />~np~{TRANSLATED(flag=>France,lang=>fr)}[url] or ((wikiname)) or ((inter:interwiki)) (use wiki syntax){TRANSLATED}~/np~"; } function wikiplugin_translated($data, $params) { extract ($params,EXTR_SKIP); $img = ''; $h = opendir("img/flags/"); while ($file = readdir($h)) { if (substr($file,0,1) != '.' and substr($file,-4,4) == '.gif') { $avflags[] = substr($file,0,strlen($file)-4); } } if (isset($flag)) { if (in_array($flag,$avflags)) { $img = "<img src='img/flags/$flag.gif' width='18' height='13' vspace='0' hspace='3' alt='$lang' align='baseline' /> "; } } if (!$img) { $img = "( $lang ) "; } if (isset($data)) { $back = $img.$data; } else { $back = "''no data''"; } return $back; } ?>