Advertisement
Guest User

Untitled

a guest
Dec 17th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by deZender.Net
  5. * @ deZender (PHP5 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 1.1.6.0
  8. * @ Author : DeZender
  9. * @ Release on : 02.06.2013
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. /**
  15. * Display page
  16. *
  17. * @see account.php
  18. * @global $config, $smarty, $dbconn, $auth, $lang, $multi_lang, $REFERENCES
  19. * @return void
  20. */
  21. function AccountPage($par, $err = '') {
  22. global $config;
  23. global $smarty;
  24. global $dbconn;
  25. global $user;
  26. global $lang;
  27. global $multi_lang;
  28. global $REFERENCES;
  29.  
  30. $file_name = GetSeoURL( 'account.php' );
  31. IndexHomePage( 'account', 'homepage' );
  32.  
  33. if ($err) {
  34. GetErrors( $err );
  35. }
  36.  
  37. $settings = GetSiteSettings( array( 'use_agent_user_type', 'phone_format', 'view_user_info' ) );
  38. $phone_format = ($config['settings']['use_phone_format'] ? $config['settings']['phone_format'] : '');
  39. $smarty->assign( 'file_name', $file_name );
  40. $smarty->assign( 'use_agent_user_type', $settings['use_agent_user_type'] );
  41. $smarty->assign( 'phone_format', $phone_format );
  42. $smarty->assign( 'view_user_info', $settings['view_user_info'] );
  43. switch ($par) {
  44. ............................................................
  45. ......................
  46. ..........
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement