Advertisement
Guest User

Untitled

a guest
Jan 29th, 2015
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. function prettysearch_url_inbound_alter(&$path, &$options, $original_path)
  2. {
  3.    if($path = 'pista'){
  4.      $path = 'user/1';
  5.    }
  6. }
  7.  
  8. function prettysearch_url_outbound_alter(&$path, &$options, $original_path)
  9. {
  10.    if($path = 'user/1'){
  11.      $path = 'pista';
  12.    }
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement