mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 12:48:24 +01:00
11 lines
238 B
BlitzBasic
11 lines
238 B
BlitzBasic
//<?
|
|
|
|
|
|
$class = e107::getBB()->getClass('table');
|
|
if($parm)
|
|
{
|
|
return "<table class='{$class}' {$parm}>".trim($code_text)."</table>";
|
|
}
|
|
|
|
return "<table class='table table-striped table-bordered {$class}'>".trim($code_text)."</table>";
|