23 lines
359 B
PHP
23 lines
359 B
PHP
<?php
|
|
class box
|
|
{
|
|
function __construct()
|
|
{
|
|
|
|
}
|
|
|
|
static function warning($text)
|
|
{
|
|
return '<div class="box box-warning">'.$text.'</div>';
|
|
}
|
|
|
|
static function success($text)
|
|
{
|
|
return '<div class="box box-success">'.$text.'</div>';
|
|
}
|
|
|
|
static function error($text)
|
|
{
|
|
return '<div class="box box-error">'.$text.'</div>';
|
|
}
|
|
} |