0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
wiki-plugins
/
[
Home
]
File: wikiplugin_translated.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: wikiplugin_translated.php 56399 2015-10-03 13:37:53Z lindonb $ function wikiplugin_translated_info() { return array( 'name' => tra('Translated'), 'documentation' => 'PluginTranslated', 'description' => tra('Create multilingual links'), 'prefs' => array( 'feature_multilingual', 'wikiplugin_translated' ), 'body' => tra('[url] or ((wikiname)) or ((inter:interwiki)) (use wiki syntax)'), 'iconname' => 'language', 'introduced' => 1, 'params' => array( 'lang' => array( 'required' => true, 'name' => tra('Language'), 'description' => tra('Two letter language code of the language, example:') . ' <code>fr</code>', 'since' => '1', 'filter' => 'alpha', 'default' => '', ), 'flag' => array( 'required' => false, 'name' => tra('Flag'), 'description' => tr('Country name, example:') . ' <code>France</code>', 'since' => '1', 'filter' => 'alpha', 'default' => '', ), ), ); } 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; }