Add version files and new GIF images for UI components

This commit is contained in:
2025-04-03 06:26:44 +07:00
commit 663c28a2ea
5219 changed files with 772528 additions and 0 deletions

16
controller/libmsginfo.php Normal file
View File

@ -0,0 +1,16 @@
<?php
class LIBMSG
{
var $style;
public function SHOWMSG($MSGTYPE,$STYLE=null,$HEADERMSG,$MSG)
{
$this->style="width:40%;left:28%;top:0px;position:fixed;";
if($STYLE){$this->style=$STYLE;}
return "<div class=\"$MSGTYPE\" style=\"".$this->style."\">
<button type=\"button\" class=\"close\" data-dismiss=\"alert\">&times;</button>
<strong>$HEADERMSG</strong>&nbsp;$MSG
</div>";
}
}
?>