8 lines
197 B
PHP
8 lines
197 B
PHP
|
<?php
|
||
|
function kompass_print_message_box(string $message, string $type = 'success')
|
||
|
{
|
||
|
echo '<div class="notice notice-' . $type .'" style="padding: 5px 10px;">';
|
||
|
echo $message;
|
||
|
echo '</div>';
|
||
|
|
||
|
}
|