Addition of a info box
$variable_name->addInfoBoxLine($title, $text, $value, $color, $type);$variable_name->addInfoBox("Title");
$variable_name->addInfoBoxLine("Title", 'Text %s and...', 'value', 'red', 'default');


Last updated
$variable_name->addInfoBoxLine($title, $text, $value, $color, $type);$variable_name->addInfoBox("Title");
$variable_name->addInfoBoxLine("Title", 'Text %s and...', 'value', 'red', 'default');


Last updated
$variable_name->addInfoBox("Title");
$variable_name->addInfoBoxLine("Title", 'Text', '', '', 'information');$variable_name -> renderInfoBox();$variable_name = new ModuleAdmin();
$variable_name->addInfoBox("bike"); $variable_name->addInfoBox("car");
$variable_name->addInfoBoxLine("bike", 'Text1', '', '', 'information');
$variable_name->addInfoBoxLine("bike", 'Text2', '', '', 'information');
$variable_name->addInfoBoxLine("car", 'Text3', '', '', 'information');
echo $variable_name -> renderInfoBox();