Advertisement
Guest User

helpers.php

a guest
Jul 22nd, 2015
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.28 KB | None | 0 0
  1. <?php
  2.  
  3. if (!function_exists('view')) {
  4.  
  5.     function view($view = null, $data = array()) {
  6.         App::getView()->make($view, $data);
  7.     }
  8.  
  9. }
  10.  
  11. if (!function_exists('redirect')) {
  12.  
  13.     function redirect($url) {
  14.         header('Location: ' . $url);
  15.         exit();
  16.     }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement