Ejemplo n.º 1
0
 /**
  * Redirects the user to a new URL
  *
  * @param   string    $url The URL to redirect to
  * @param   boolean   $code The HTTP status code, which should be sent (301, 302 or 303)
  * @param   boolean   $send If true, headers will be sent and redirection will take effect
  */
 public static function send($url = false, $code = false, $send = true)
 {
     return header::redirect($url, $code, $send);
 }