mirror of
https://github.com/e107inc/e107.git
synced 2025-07-30 19:30:25 +02:00
new module creation
This commit is contained in:
15
e107_files/bbcode/file.bb
Normal file
15
e107_files/bbcode/file.bb
Normal file
@@ -0,0 +1,15 @@
|
||||
global $pref, $fromadmin;
|
||||
|
||||
if (array_key_exists('forum_attach', $pref) && $pref['forum_attach'] && FILE_UPLOADS || ADMIN || $fromadmin)
|
||||
{
|
||||
$image = (file_exists(THEME."images/file.png") ? THEME."images/file.png" : e_IMAGE."generic/".IMODE."/file.png");
|
||||
list($fname, $uc) = explode("^", $parm."^");
|
||||
if(isset($uc))
|
||||
{
|
||||
if(!check_class($uc))
|
||||
{
|
||||
return;
|
||||
}
|
||||
}
|
||||
return "<a href='".$tp -> toAttribute($fname)."'><img src='".$image."' alt='' style='border:0; vertical-align:middle' /></a> <a href='".$tp -> toAttribute($fname)."'>".$code_text."</a>";
|
||||
}
|
Reference in New Issue
Block a user