Add version files and new GIF images for UI components
This commit is contained in:
16
controller/libmsginfo.php
Normal file
16
controller/libmsginfo.php
Normal 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\">×</button>
|
||||
<strong>$HEADERMSG</strong> $MSG
|
||||
</div>";
|
||||
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user