// 【Virsion 】0.0.0
// 【作 成 日】2008/08/20
// 【動作 Ver】PukiWiki 1.4.7 でのみ動作確認
// 【License 】GPL v2 or (at your option) any later version
//
/////////////////////////////////////////////////
//表示部
function plugin_extfile_importer_convert()
{
global $head_tags;
$args = func_get_args();
$str = htmlspecialchars(implode(',',$args)); //引数の結合 + サニタイズ
if(preg_match('/\.js$/', $str, $matches)){
if(!(PKWK_ALLOW_JAVASCRIPT)){return '';}
$head_tags[] = ' ';
}elseif(preg_match('/\.css$/', $str, $matches)){
$head_tags[] = ' ';
}
}
?>