Advertisement
Whistik

Untitled

Oct 1st, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.42 KB | None | 0 0
  1. /**
  2. * Throw an alert
  3. *
  4. * @param mixed $alert Content of the alert
  5. * @param string $type Type of the alert
  6. * @return mixed
  7. */
  8. function throw_alert($title, $text, $type)
  9. {
  10.     echo "<div class='alert alert-{$type} alert-dismissible fade show' role='alert'><button type='button' class='close' data-dismiss='alert' aria-label='Close'><span aria-hidden='true'>×</span></button><strong>{$title}</strong> {$text}</div>";
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement